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 CI workflow and project configuration for the SANDAG ABM3 example. The main focus is on migrating the environment setup from Conda to
uvand standardizing Python version management, with additional improvements to dependency specification and test configuration.CI workflow modernization:
.github/workflows/ci.ymlfrom Conda touv, including installation steps foruv, syncing dependencies viauv sync, and usinguv pip installfor installing ActivitySim. Removed all Conda-specific steps and caching logic..python-versionand thesetup-pythonaction’spython-version-fileoption, ensuring Python 3.11 is consistently used. [1] [2]Project configuration and dependencies:
pyproject.tomlspecifying project metadata, core dependencies, and a development dependency group, making the environment reproducible and easier to manage.Testing configuration:
test/test_sandag_abm3.py) from"../extensions"to"extensions", aligning with the new project structure.