Conversation
added 2 commits
May 16, 2024 10:14
Poetry allows for much finer control of requirements over stock requirements.txt.
danharcombe
approved these changes
May 22, 2024
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.
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.txtfile. Additionally, aCHANGELOG.mdfile has been added to document project changes, and thepyproject.tomlfile 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.shandcreate_resources_nosharedkey.sh: These scripts now check for the presence of Poetry, and use it to create arequirements.txtfile. [1] [2] [3]dev-requirements.txt: This file has been removed, as its contents have been moved to thepyproject.tomlfile.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.