Skip to content

Commit

Permalink
build(python): drop support for Python 3.6 and 3.7 (cernopendata#143)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Drops support for Python 3.6 and 3.7.
  • Loading branch information
tiborsimko committed Aug 22, 2024
1 parent a57a9bc commit 6e37dcc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,15 @@
],
"pycurl": ["pycurl>=7"],
"tests": [
'black>=19.10b0 ; python_version>="3"',
"black>=19.10b0",
"check-manifest>=0.25",
"coverage>=4.0",
"mock>=3.0",
"pydocstyle>=1.0.0",
"pytest-cache>=1.0",
"pytest-cov>=1.8.0",
"pytest>=2.8.0",
'platformdirs<2.1 ; python_version=="3.6"',
'pytest-mock>=2.0,<3.0 ; python_version=="2.7"',
'pytest-mock>=3.0 ; python_version>="3"',
"pytest-mock>=3.0",
],
"xrootd": [
"xrootd>=4.12.2",
Expand Down Expand Up @@ -68,6 +66,7 @@
"cernopendata_client",
],
extras_require=extras_require,
python_requires=">=3.8",
install_requires=install_requires,
entry_points={
"console_scripts": [
Expand All @@ -81,8 +80,6 @@
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

[tox]
envlist =
py36
py37
py38
py39
py310
Expand Down

0 comments on commit 6e37dcc

Please sign in to comment.