-
Notifications
You must be signed in to change notification settings - Fork 6
Drop 3.8 support; add 3.13 testing; drop support for old versions of Pint #225
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
f19e09f
Drop 3.8 support; add 3.13 testing; drop support for old versions of …
kroenlein 6ed1bb5
Update to use latest common actions release
kroenlein 853f78b
Reference trial action SHA
kroenlein a46ef57
Reference trial action SHA
kroenlein b5935a9
Reference trial action branch
kroenlein 467a98c
Remove test requirement for dead code for Pint < 0.22
kroenlein d03a9e0
Potential fix for code scanning alert no. 7: Workflow does not contai…
kroenlein 3fbb43d
Trivial commit to force rebuild
kroenlein 8f6afe4
Merge branch 'maintain/bump-pint-and-python' of github.com:CitrineInf…
kroenlein 13a4f4c
Migrate testing to use released workflows
kroenlein 5a01362
Typo
kroenlein File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| __version__ = "2.1.11" | ||
| __version__ = "2.2.0" |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| pint==0.21 | ||
| pint==0.24.4 | ||
| deprecation==2.1.0 | ||
| typing-extensions==4.8.0 | ||
| importlib-resources==5.3.0 |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,9 @@ | ||
| flake8==7.0.0 | ||
| flake8-docstrings==1.7.0 | ||
| numpy==1.24.4; python_version<'3.10' | ||
| pandas==2.0.3; python_version<'3.10' | ||
| numpy>=2.0.2,<=2.1.0; python_version>='3.10' | ||
| pandas==2.3.0; python_version>='3.10' | ||
|
Comment on lines
+3
to
+6
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There are some unfortunate import errors if we're not careful about numpy/pandas/Pint combinations |
||
| pytest==8.0.0 | ||
| pytest-cov==4.1.0 | ||
| pandas>=2.0.3,<2.2.0 # includes a compatible version of numpy | ||
| derp==0.1.1 | ||
Oops, something went wrong.
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.
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.
This is unreachable with the current library limits, but is reachable for older versions of Pint. Kept to avoid being "breaking" without a major version bump.