Skip to content

Commit 54982e2

Browse files
author
Matej Spiller Muys
committed
Require astunparse for older python versions
1 parent a3a0482 commit 54982e2

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

python/requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
validate-email>=1.3
55
Jinja2>=2.11.1
66
protobuf>=5.27.0
7-
astunparse>=1.6.3
7+
astunparse>=1.6.3 ; python_version < '3.10'

python/setup.cfg

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,19 @@ classifiers =
1414
Programming Language :: Python :: 3.6
1515
Programming Language :: Python :: 3.7
1616
Programming Language :: Python :: 3.8
17+
Programming Language :: Python :: 3.9
18+
Programming Language :: Python :: 3.10
19+
Programming Language :: Python :: 3.11
20+
Programming Language :: Python :: 3.12
21+
Programming Language :: Python :: 3.13
1722

1823
[options]
1924
packages = find:
2025
install_requires =
2126
validate-email>=1.3
2227
Jinja2>=2.11.1
2328
protobuf>=5.27.0
24-
astunparse>=1.6.3
29+
astunparse>=1.6.3 ; python_version < '3.10'
2530
python_requires = >=3.6
2631

2732
[options.data_files]

0 commit comments

Comments
 (0)