You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry if this is poorly formatted, I don't often submit issues like this.
There are three files in contrib that aren't fully compatible with Python 3.8 because of issues with typing, because objects that should be initialized as a Tuple are initialized as tuples, and in once case because Tuple isn't in the initial import from typing. Could this be fixed in the following files?
dadapt_adamw.py,
combine.py,
prodigy.py.
The text was updated successfully, but these errors were encountered:
Hello @jcraisbeck
No worries, issues are welcome.
Indeed optax only supports python>=3.9 and indeed the only unsupported items should be the typings (I believe such an issue may appear in many files).
We prefer to align with most recent practices in python and for this reason we removed support for python 3.8.
Could you explain why you can't use python>=3.9?
Thanks !
Hello,
Sorry if this is poorly formatted, I don't often submit issues like this.
There are three files in contrib that aren't fully compatible with Python 3.8 because of issues with typing, because objects that should be initialized as a Tuple are initialized as tuples, and in once case because Tuple isn't in the initial import from typing. Could this be fixed in the following files?
dadapt_adamw.py,
combine.py,
prodigy.py.
The text was updated successfully, but these errors were encountered: