-
Notifications
You must be signed in to change notification settings - Fork 208
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 for python 3.12 #1019
support for python 3.12 #1019
Conversation
Note: the if condition is to support python 2.X... not sure if that is necessary. |
Thanks. We've already dropped support for python-2. Please remove the if-condition (which should fix CI since you forgot to |
Absolutely, I can do that. Would you like me to add all the versions between 3.9 (latest in the github action config) and 3.12, or just append 3.12 to the list? |
If you could add all the versions from 3.9 through 3.12 that would be great. |
python3.12 removed `readfp()`, recommended to use `read_file()` instead * Add versions 3.10 through 3.12 to test matrix
Looking at the CI failure, it seems that yaml interprets |
thanks for that - apologies that this fell off my radar |
No problem, it happens. I let this fall off my radar too since the repository owner opened a rival pull request and I wanted to give him a chance to get involved if he was interested. |
Sorry for competing! Thanks for resolving @ryneeverett. |
* add support for python 3.12 python3.12 removed `readfp()`, recommended to use `read_file()` instead * Add versions 3.10 through 3.12 to test matrix * CI: fix - avoid decimal rounding - pull back 3.11 and 3.12 since we still have some issues to work through --------- Co-authored-by: ryneeverett <ryneeverett@gmail.com>
python3.12 removed
readfp()
, recommended to useread_file()
instead