-
Notifications
You must be signed in to change notification settings - Fork 104
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
Tox CI fix #1656
Tox CI fix #1656
Conversation
Codecov Report
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. @@ Coverage Diff @@
## develop #1656 +/- ##
========================================
Coverage 41.03% 41.03%
========================================
Files 189 189
Lines 43221 43221
========================================
Hits 17736 17736
Misses 25485 25485 |
squashed the bugs, ready for review... |
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.
Looks great. Thanks for the quick attention to this!
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.
Looks good. Thanks for fixing this and updating the NumPy versions.
Thx, @tepickering ! |
It looks like
tox
became more pedantic about environment names exactly matching what's intox.ini
. Previously, one could leave off, say, thepy311-
at the beginning of an environment name andtox
would assume the available python version is 3.11 and carry on. Now it only works if there is an exact match intox list
. This PR tweakstox.ini
and the CI workflows to use python version format that is consistent and create fully qualifies tox environments in the workflows.