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 modernizes the project's Python environment management and dependency installation, shifting from Conda/Mamba to
uvandpyproject.tomlstandards. It also introduces a script for downloading example data assets. The most important changes are grouped below.Environment and Dependency Management Updates:
.github/workflows/ci.ymlnow usesuvfor dependency installation and environment setup, replacing Conda/Mamba. It leveragespyproject.tomlfor dependencies and sets up Python via.python-version..python-versionfile to specify Python 3.11 for consistent environment setup, anduv.lockfile.pyproject.tomlfile that defines all runtime and development dependencies, project metadata, and Python version requirements, standardizing dependency management.Data Management:
scripts/download_data.py, a script to automate downloading and verifying example data and assets from remote sources for local use. This is the same code as already appears in the README, just as an executable script.