-
-
Notifications
You must be signed in to change notification settings - Fork 133
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
Python 3.11 support #435
Python 3.11 support #435
Conversation
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.
Some comments. Would be good to explain why the Python version conditional test with a comment.
LGTM. Nightly is just a canary anyway. |
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.
LGTM.
@bashtage If you can approve and merge this, then I will do a release. |
I don't know if I should mention this as it might delay this being released slightly. |
Thanks for the heads up. I saw your message in time and have pushed changes for |
@@ -21,7 +21,7 @@ runs: | |||
|
|||
- name: Determine poetry version | |||
shell: bash | |||
run: echo "::set-output name=VERSION::$(poetry --version)" | |||
run: echo "{VERSION}=$(poetry --version)" |
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.
See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ . We were getting warnings, and this gets rid of them
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.
LGTM.
Before merging, awaiting resolution of pandas-dev/pandas#49736 which I hope will get into pandas 1.5.2, and, if so, we can then remove the warning in
test_frame.py
, otherwise we release with it.Putting in draft status for now. Should replace PR #398
Pinned pyright to 1.1.279 and 1.1.280 is reporting errors with relative imports
microsoft/pyright#4212