We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We need some check assert sys.version_info[:2] >= (3, 7) or so. Also with some documentation of what actually we use.
assert sys.version_info[:2] >= (3, 7)
We rely on deterministic insertion order of dict, which requires Python >=3.6 (see here).
dict
We use from __future__ import annotations which requires Python >=3.7 (doc).
from __future__ import annotations
typing.Protocol requires Python >=3.8.
typing.Protocol
Slash (/) in function argument list to mark positional-only arguments (doc) requires Python >=3.8.
/
Originally posted by @albertz in #36 (comment)
Related discussion on RETURNN side: rwth-i6/returnn#487 (which currently still supports much older Python versions, also Python 2).
The text was updated successfully, but these errors were encountered:
Simplify naming logic by storing parents
75948c8
Related: #42 (OrderedSet or IndexedSet) #43 (min Python version)
50f42c3
No branches or pull requests
We need some check
assert sys.version_info[:2] >= (3, 7)
or so.Also with some documentation of what actually we use.
We rely on deterministic insertion order of
dict
, which requires Python >=3.6 (see here).We use
from __future__ import annotations
which requires Python >=3.7 (doc).typing.Protocol
requires Python >=3.8.Slash (
/
) in function argument list to mark positional-only arguments (doc) requires Python >=3.8.Originally posted by @albertz in #36 (comment)
Related discussion on RETURNN side: rwth-i6/returnn#487 (which currently still supports much older Python versions, also Python 2).
The text was updated successfully, but these errors were encountered: