Skip to content

Commit

Permalink
Require astunparse only for older python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
matejsp authored and Matej Spiller Muys committed Dec 9, 2024
1 parent a3a0482 commit 0a5f828
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
validate-email>=1.3
Jinja2>=2.11.1
protobuf>=5.27.0
astunparse>=1.6.3
astunparse>=1.6.3 ; python_version < '3.10'
7 changes: 6 additions & 1 deletion python/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,19 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13

[options]
packages = find:
install_requires =
validate-email>=1.3
Jinja2>=2.11.1
protobuf>=5.27.0
astunparse>=1.6.3
astunparse>=1.6.3 ; python_version < '3.10'
python_requires = >=3.6

[options.data_files]
Expand Down

0 comments on commit 0a5f828

Please sign in to comment.