-
Notifications
You must be signed in to change notification settings - Fork 653
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
Update test.pip compatible with Python 3.12 #2161
base: main
Are you sure you want to change the base?
Conversation
Additional changes will almost certainly be needed to support Python 3.12. Although PyTorch supports 3.12, TensorFlow doesn't curently support Python 3.12. I don't think it makes sense for us to move forward with support for a new version of Python until both PyTorch and TensorFlow supports it. We're already tracking Python 3.12 support in #2129. |
it's ready for tensorflow 2.16rc0. Only merge when tensorflow will be released |
https://pypi.org/project/tensorflow/ |
Warning: TensorFlow 2.15 included the final release of the |
it breaks because it tries to install tensorflow-macos. But on official apple page tells: |
reqs/test.pip
Outdated
@@ -38,7 +38,7 @@ tensorflow==2.16.1; platform_machine != "arm64" | |||
keras==3.1.0; platform_machine != "arm64" | |||
|
|||
# TensorFlow (arm64) related package. Currently no Python 3.13 support. | |||
tensorflow-macos==2.16.1; platform_machine == "arm64" and python_version < "3.13" | |||
tensorflow==2.16.1; platform_machine == "arm64" and python_version < "3.13" |
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 don't think this makes sense. You probably want to remove this line and edit line 37 to covert both cases.
There also doesn't seem to be a Keras version 3.1: https://pypi.org/project/keras/#history |
No description provided.