Switch to using Poetry for dependency management #7
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 includes changes that transition the project from using pip to manage Python dependencies to using Poetry. This includes updates to the CI workflow, shell scripts, and the removal of the
dev-requirements.txt
file. Additionally, aCHANGELOG.md
file has been added to document project changes, and thepyproject.toml
file has been introduced to define the project and its dependencies.Changes to dependency management:
.github/workflows/ci.yml
: The CI workflow now uses Poetry to install dependencies and run code analysis tools.create_resources.sh
andcreate_resources_nosharedkey.sh
: These scripts now check for the presence of Poetry, and use it to create arequirements.txt
file. [1] [2] [3]dev-requirements.txt
: This file has been removed, as its contents have been moved to thepyproject.toml
file.pyproject.toml
: This new file defines the project and its dependencies.Additional changes:
CHANGELOG.md
: This new file will be used to document all notable changes to the project.