-
Notifications
You must be signed in to change notification settings - Fork 411
Support python 3.12 #1068
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
Support python 3.12 #1068
Conversation
| numpy = { version = "^1.22.4", optional = true } | ||
| numpy = [ | ||
| { version = "1.26.0", python = ">=3.9,<3.13", optional = true }, | ||
| { version = "1.24.4", python = ">=3.8,<3.9", optional = true } |
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.
3.8 is also almost EOL: https://devguide.python.org/versions/
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.
Created issue to track this
| default: true | ||
|
|
||
| # MD013/line-length - Line length | ||
| MD013: false |
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.
I really dislike fixed length :)
Fokko
left a comment
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.
@kevinjqliu this looks nice!
421f22a to
3c502d6
Compare
| "ignore:datetime.datetime.utcnow\\(\\) is deprecated and scheduled for removal in a future version.", | ||
| "ignore:datetime.datetime.utcfromtimestamp\\(\\) is deprecated and scheduled for removal in a future 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.
Should we also create an issue for this one? Would be a good first issue for someone to get started with PyIceberg :)
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 PR adds support for python 3.12 to the PyIceberg project. It includes building and releasing for python version 3.12.
python-ciGithub Action; works for python 3.12 (Github Action run)python-releaseGithub Action; works for python 3.12 (Github Action run via my forked repo)Pre-req: #1118, update markdown linter to use
markdownlintwhich supports python 3.12Closes #28