Skip to content

Commit 6576cbe

Browse files
committed
Fix up the versions of python allowed
Was accidentally not allowing an install of 3.8 or 3.9!
1 parent 09b755d commit 6576cbe

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@
3838
"Intended Audience :: Developers",
3939
"Intended Audience :: Information Technology",
4040
"Programming Language :: Python",
41+
"Programming Language :: Python :: 3.9",
42+
"Programming Language :: Python :: 3.8",
43+
"Programming Language :: Python :: 3.6",
4144
"Programming Language :: Python :: 3.7",
45+
"Programming Language :: Python :: 3.6",
4246
"Topic :: Software Development",
4347
"Topic :: Utilities",
4448
],

setup_func_adl.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,15 @@
4141
"Intended Audience :: Developers",
4242
"Intended Audience :: Information Technology",
4343
"Programming Language :: Python",
44+
"Programming Language :: Python :: 3.9",
45+
"Programming Language :: Python :: 3.8",
46+
"Programming Language :: Python :: 3.6",
4447
"Programming Language :: Python :: 3.7",
4548
"Programming Language :: Python :: 3.6",
4649
"Topic :: Software Development",
4750
"Topic :: Utilities",
4851
],
4952
data_files=[],
50-
python_requires='>=3.6, <3.8',
53+
python_requires='>=3.6, <3.10',
5154
platforms="Any",
5255
)

setup_func_adl_ast.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,15 @@
4141
"Intended Audience :: Developers",
4242
"Intended Audience :: Information Technology",
4343
"Programming Language :: Python",
44+
"Programming Language :: Python :: 3.9",
45+
"Programming Language :: Python :: 3.8",
46+
"Programming Language :: Python :: 3.6",
4447
"Programming Language :: Python :: 3.7",
48+
"Programming Language :: Python :: 3.6",
4549
"Topic :: Software Development",
4650
"Topic :: Utilities",
4751
],
4852
data_files=[],
49-
python_requires='>=3.6, <3.8',
53+
python_requires='>=3.6, <3.10',
5054
platforms="Any",
5155
)

0 commit comments

Comments
 (0)