Skip to content

Commit 5c92659

Browse files
committed
setuptools 70+ requires python >= 3.8
1 parent 49c9a19 commit 5c92659

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
strategy:
5858
matrix:
59-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
59+
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
6060
os: [ubuntu-latest]
6161
include:
6262
- python-version: '3.9'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
setuptools>=70.0.0
2-
PyYAML==6.0.1
2+
PyYAML==6.0.2
33
stdlib-list>=0.6.0
44
tomlkit>=0.7.0
55
coverage>=5.5

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def run_tests(self):
3636
name='pydeps',
3737
version=version,
3838
packages=setuptools.find_packages(exclude=['tests*']),
39-
python_requires=">=3.6",
39+
python_requires=">=3.8",
4040
install_requires=[
4141
'stdlib_list',
4242
],
@@ -60,8 +60,6 @@ def run_tests(self):
6060
'License :: OSI Approved :: BSD License',
6161
'Operating System :: OS Independent',
6262
'Programming Language :: Python',
63-
'Programming Language :: Python :: 2',
64-
'Programming Language :: Python :: 2.7',
6563
'Programming Language :: Python :: 3',
6664
'Topic :: Software Development :: Libraries :: Python Modules',
6765
]

0 commit comments

Comments
 (0)