Skip to content

Commit ad448dc

Browse files
authored
Only allow Python > 3.7 (#23)
1 parent 3102245 commit ad448dc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
install_requires=["aiohttp<4", "defusedxml", "attrs"],
2929
packages=["connect_box"],
3030
zip_safe=True,
31+
python_requires=">=3.7",
3132
classifiers=[
3233
"Development Status :: 3 - Alpha",
3334
"Environment :: Console",
@@ -36,8 +37,8 @@
3637
"Operating System :: MacOS :: MacOS X",
3738
"Operating System :: Microsoft :: Windows",
3839
"Operating System :: POSIX",
39-
"Programming Language :: Python :: 3.6",
40-
"Programming Language :: Python :: 3.7",
40+
"Programming Language :: Python :: 3.8",
41+
"Programming Language :: Python :: 3.9",
4142
"Topic :: Utilities",
4243
],
4344
)

0 commit comments

Comments
 (0)