updating to uv #7
Merged
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.
This pull request updates the project to require Python 3.12+ and standardizes the use of the
uvpackage manager for all dependency management and development workflows. The changes affect documentation, setup scripts, workflow automation, and configuration files to ensure consistency and clarity for contributors and users.Python version requirement updates:
pyproject.toml,.python-version,setup.sh, and documentation. [1] [2] [3] [4]Dependency management improvements:
pipand manual virtual environment management are replaced withuv syncand relateduvcommands in documentation (README.md,CLAUDE.md), setup scripts (setup.sh), and GitHub Actions workflows (.github/workflows/test.yml). [1] [2] [3] [4] [5]Automation and workflow enhancements:
uv sync --extra devfor dependency installation, removing manual virtual environment activation and pip install steps. [1] [2]setup.shscript now checks for Python 3.12+, installsuvif not present, and usesuv syncfor dependency installation, removing previous pip-based logic.Documentation updates:
uv-based workflows. [1] [2] [3]Configuration consistency:
.python-versionfile is updated to specify Python 3.12, ensuring consistency across development environments.