Conversation
pyproject.toml is the single source of truth for dependencies now. The conda files were outdated (targeting Python 3.8, listing stale deps) and no longer needed. Update README install instructions accordingly.
Local helper script for activating .venv — not useful in the repo since .venv is gitignored and users activate their own environments.
Simple wrapper around `uv venv` — not needed in the repo since users can run the two commands themselves.
Include both standard python -m venv and uv workflows so users know how to create and activate their environment.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes the legacy Conda-based environment setup artifacts and updates the repository documentation to use standard Python virtual environments (with an optional uv-based workflow), aligning setup guidance with the project’s pyproject.toml configuration.
Changes:
- Deleted Conda environment definition (
environment.yml) and related Windows setup script. - Removed helper scripts for environment creation/activation (
setup_env.sh,activate_env.bat). - Updated
README.mdsetup instructions to usepython -m venvand documented an optional uv workflow.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| setup_env.sh | Removed uv-based environment creation helper script. |
| setup_env.bat | Removed Conda-based Windows environment setup script. |
| environment.yml | Removed Conda environment specification. |
| activate_env.bat | Removed Windows venv activation helper script. |
| README.md | Updated setup instructions to use venv and added uv-based setup path. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
List separate activation commands for CMD, PowerShell, and Git Bash instead of a single ambiguous Windows command. Add link to uv installation docs so users can find it easily.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.