Skip to content

Commit 0690005

Browse files
committed
Drop 2.7 support and declare this in setup.py
1 parent c9b2fef commit 0690005

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 5
1111
matrix:
12-
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
12+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
1313

1414
steps:
1515
- uses: actions/checkout@v1

azure-devops/setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,7 @@
2424
'Intended Audience :: Developers',
2525
'Intended Audience :: System Administrators',
2626
'Programming Language :: Python',
27-
'Programming Language :: Python :: 2',
28-
'Programming Language :: Python :: 2.7',
2927
'Programming Language :: Python :: 3',
30-
'Programming Language :: Python :: 3.5',
3128
'Programming Language :: Python :: 3.6',
3229
'Programming Language :: Python :: 3.7',
3330
'Programming Language :: Python :: 3.8',
@@ -50,6 +47,7 @@
5047
classifiers=CLASSIFIERS,
5148
packages=find_packages(),
5249
include_package_data=True,
50+
python_requires=">=3.6",
5351
long_description="""\
5452
"""
5553
)

0 commit comments

Comments
 (0)