Skip to content

Commit 83f4ff7

Browse files
committed
drop support for Python 3.6
1 parent 61c5d91 commit 83f4ff7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,12 @@
4040
'Topic :: Software Development :: Testing',
4141
'Topic :: Software Development :: Libraries',
4242
'License :: OSI Approved :: MIT License',
43-
'Programming Language :: Python :: 2',
44-
'Programming Language :: Python :: 2.6',
45-
'Programming Language :: Python :: 2.7',
4643
'Programming Language :: Python :: 3',
47-
'Programming Language :: Python :: 3.4',
48-
'Programming Language :: Python :: 3.5',
49-
'Programming Language :: Python :: 3.6',
44+
'Programming Language :: Python :: 3 :: Only',
45+
'Programming Language :: Python :: 3.7',
46+
'Programming Language :: Python :: 3.8',
47+
'Programming Language :: Python :: 3.9',
48+
'Programming Language :: Python :: 3.10',
5049
],
5150

5251
# What does your project relate to?
@@ -55,6 +54,7 @@
5554
include_package_data = True, # include files listed in MANIFEST.in
5655
install_requires = ['httpbin','six'],
5756
extras_require = {"test": ["requests", "pytest"]},
57+
python_requires = ">=3.7",
5858

5959
# the following makes a plugin available to pytest
6060
entry_points = {

0 commit comments

Comments
 (0)