Skip to content

Commit cd18fa1

Browse files
committed
setup.py: Set Python versions to 3.7 and 3.8
1 parent c1efdcc commit cd18fa1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,16 @@
3737
'Intended Audience :: System Administrators',
3838
'License :: OSI Approved :: MIT License',
3939
'Operating System :: POSIX',
40-
'Programming Language :: Python :: 3 :: Only',
40+
'Programming Language :: Python :: 3.7',
41+
'Programming Language :: Python :: 3.8',
4142
'Topic :: System :: Networking',
4243
'Typing :: Typed',
4344
],
4445

4546
# Packages and depencies
4647
package_dir={'': 'src'},
4748
packages=find_packages('src'),
49+
python_requires='~=3.7',
4850
install_requires=[
4951
],
5052
extras_require={

0 commit comments

Comments
 (0)