Skip to content

Commit

Permalink
setuptools 70+ requires python >= 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
thebjorn committed Oct 18, 2024
1 parent 49c9a19 commit 5c92659
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
os: [ubuntu-latest]
include:
- python-version: '3.9'
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
setuptools>=70.0.0
PyYAML==6.0.1
PyYAML==6.0.2
stdlib-list>=0.6.0
tomlkit>=0.7.0
coverage>=5.5
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def run_tests(self):
name='pydeps',
version=version,
packages=setuptools.find_packages(exclude=['tests*']),
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=[
'stdlib_list',
],
Expand All @@ -60,8 +60,6 @@ def run_tests(self):
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
Expand Down

0 comments on commit 5c92659

Please sign in to comment.