-
Notifications
You must be signed in to change notification settings - Fork 36
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
fix: Add support for Python 3.11 #329
Merged
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
468c93e
Adjust to enum changes in Python 3.11.0b3
hroncok b337126
Merge branch 'main' into python3.11
parthea b201662
ci: unit test session with python 3.11.0-beta.3
parthea c7371b4
ci: add python v3.11.0-beta.3 to noxfile.py
parthea 7672b52
another attempt to get python 3.11.0b3 working in github actions
parthea 280f9d2
ci: use python 3.8 for docs check
parthea 9f56d97
ci: fix docs build
parthea b85f9c3
Merge branch 'main' into python3.11
parthea ff677c5
Merge branch 'main' into python3.11
parthea 94d6b26
Merge branch 'main' into python3.11
parthea 20acd08
fix ci
parthea f635f9c
mark python 3.11 tests as required
parthea a1331bb
add python 3.11 to setup.py
parthea 1728f48
fix docs build
parthea 880a952
remove python 3.11 test for unitcpp
parthea 85b92fe
remove python 3.11 test for unitcpp
parthea 2b25b4f
remove python 3.11 test for unitcpp
parthea 8ee3eed
attempt to fix exclude in github action
parthea 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 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 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
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.
to_compare
is alreadyOneEnum.SOME_VALUE
-- so what is the purpose of the indirect reference through itself? Can this part of the test just be dropped?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.
Yeah, this entire assertion here seemed redundant to me as well, but I decided to keep testing what was tested.
Note that I am not available to fine-tune this into perfection, that's why I posted the patch in a comment initially as "this makes it pass" instead of opening a PR right away.