-
Notifications
You must be signed in to change notification settings - Fork 46
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.11 #197
Conversation
pyproject.toml
Outdated
@@ -35,6 +35,10 @@ torch = {version = "^2.1.0", optional = true} | |||
scikit-learn = {version = "^1.3.2", optional = true} | |||
umap-learn = {version = "^0.5.5", optional = true} | |||
tabulate = "^0.9.0" | |||
jax = "~0.4.30" | |||
jaxlib = "~0.4.30" | |||
tensorflow-io-gcs-filesystem = "0.29.0" |
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 was not able to install due to this requirement:
ERROR: Could not find a version that satisfies the requirement tensorflow-io-gcs-filesystem==0.29.0 (from aws-fortuna) (from versions: 0.34.0, 0.36.0, 0.37.0)
ERROR: No matching distribution found for tensorflow-io-gcs-filesystem==0.29.0
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.
can you share your OS and Python version? technically, this shouldn't be required, but I was running in the issue described here: python-poetry/poetry#5044
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.
MacOS and Python 3.11.9
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.
Thanks for pointing this out, I was able to reproduce this. This is happening with pip
, right?
Upgrades flax to 0.8.5 and updates code accordingly. Discontinues support for Python 3.8. Closes #194