-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[157] Refactor of build processes and dependency management using Poetry #261
Merged
Conversation
This file contains 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
borland667
force-pushed
the
157-dependencies
branch
8 times, most recently
from
April 17, 2024 00:27
2d93f3b
to
7f80631
Compare
Pull Request Test Coverage Report for Build 8744098066Details
💛 - Coveralls |
borland667
force-pushed
the
157-dependencies
branch
5 times, most recently
from
April 17, 2024 14:26
188c313
to
c1c3575
Compare
borland667
force-pushed
the
157-dependencies
branch
from
April 17, 2024 14:54
c1c3575
to
0341a16
Compare
borland667
requested review from
Franr,
juanmatias,
angelofenoglio and
diego-ojeda-binbash
April 17, 2024 15:01
borland667
added
documentation
Improvements or additions to documentation
enhancement
New feature or request
patch
minor
labels
Apr 17, 2024
This was
linked to
issues
Apr 17, 2024
borland667
changed the title
[157] Avoid having multiple sources for dependencies
[157] Refactor of Build Processes and Dependency Management Using Poetry
Apr 17, 2024
borland667
changed the title
[157] Refactor of Build Processes and Dependency Management Using Poetry
[157] Refactor of build processes and dependency management using Poetry
Apr 17, 2024
borland667
force-pushed
the
157-dependencies
branch
2 times, most recently
from
April 17, 2024 20:40
de62195
to
2b4c640
Compare
4 tasks
borland667
force-pushed
the
157-dependencies
branch
4 times, most recently
from
April 18, 2024 14:51
6c080b0
to
81d2a52
Compare
* update poetry install action * update poetry install method * update unit tests pipeline * update makefile test command * update unit test workflow * run unit tests with multiple python versions * cleanup files & update Makefile * update dependency installation with poetry for integration tests * update unit test workflow * update release workflows * update docs * fix typo * remove verbose argument in terraform integration tests * update toolbox image version * fix build command * add supported python versions & doc * update poetry lock file * add support for python 3.11 * update docs
borland667
force-pushed
the
157-dependencies
branch
from
April 18, 2024 20:13
81d2a52
to
978161b
Compare
angelofenoglio
approved these changes
Apr 24, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It does seem that nothing got lost in the switch. The new sections in the README look nice!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
What?
Files Added
.coveragerc
to centralize the coverage configuration.entrypoint.sh
added for better container initialization.Files Updated
release-pypi-build-push-package.yml
,release-pypi-build-push-test-package.yml
,tests-integration.yaml
, andtests-unit.yml
updated to improve CI/CD pipelines using Poetry.pyproject.toml
andpoetry.lock
updated to use Poetry for dependency management, reflecting new dependencies and configurations.setup.cfg
(now deleted) to.coveragerc
.Files Removed
Pipfile
andPipfile.lock
as part of the move to Poetry.dev-requirements.txt
.setup.cfg
and minimizedsetup.py
, streamlining project setup and reducing redundancy.Why?
.coveragerc
simplifies modifications and updates, enhancing maintainability.Pipfile
,Pipfile.lock
,setup.cfg
) reduces clutter and focuses on using Poetry, which supports contemporary Python project standards.References
closes #157
closes #156
closes #253
closes #252
Before Release
Review the checklist here.