Draft
Conversation
This change updates the CI configuration to include Python 3.12 and 3.13 in the test matrix. This ensures that the package is tested against these newer Python versions. The `tox.ini` file has been updated to include `py3.12` and `py3.13` in the `envlist` and to ensure that the package dependencies are installed for the test runs.
This commit addresses the comments on pull request #7. - Increased cache expiry to 31 days. - Added support for nep_mode in caching. - Restored `tests/test_docker_utils.py` to the version in the PR. - Kept `setuptools` as a dependency as it is required for Python < 3.9.
This commit addresses the comments on pull request #7. - Increased cache expiry to 31 days. - Added support for nep_mode in caching. - Restored `tests/test_docker_utils.py` to the version in the PR. - Kept `setuptools` as a dependency as it is required for Python < 3.9. - Fixed various linting and mypy errors. - Removed black and flake8 from the linting configuration.
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #9 +/- ##
============================================
- Coverage 100.00% 81.21% -18.79%
============================================
Files 3 4 +1
Lines 80 181 +101
============================================
+ Hits 80 147 +67
- Misses 0 34 +34 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This commit removes support for Python 3.7. - Updated `pyproject.toml` to require Python >= 3.8. - Removed Python 3.7 from the test matrix in `.github/workflows/tox.yml`. - Removed Python 3.7 from the `envlist` in `tox.ini`.
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 commit addresses the comments on pull request #7.