Skip to content

Commit 4938541

Browse files
authored
Remove Support for Python 3.5 (#50)
1 parent 19945c3 commit 4938541

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
@@ -30,9 +30,9 @@
3030
'Intended Audience :: Developers',
3131
'Intended Audience :: System Administrators',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.5',
3433
'Programming Language :: Python :: 3.6',
3534
'Programming Language :: Python :: 3.7',
35+
'Programming Language :: Python :: 3.8'
3636
]
3737

3838
with io.open('LICENSE.txt', 'r', encoding='utf-8') as f:
@@ -48,5 +48,6 @@
4848
install_requires=DEPENDENCIES,
4949
extras_require=EXTRAS,
5050
packages=find_packages(exclude=['tests', 'tests.*']),
51-
include_package_data=True
51+
include_package_data=True,
52+
python_requires=">=3.6,<3.9"
5253
)

0 commit comments

Comments
 (0)