Skip to content

Commit

Permalink
Drop end-of-life Python versions
Browse files Browse the repository at this point in the history
As per the release cycle (https://devguide.python.org/versions/):

* Python 3.6 EOL since end of 2021
* Python 3.7 EOL since end of 2022

Dropping support for those in future releases.
  • Loading branch information
inetAnt committed Feb 7, 2024
1 parent 5276ffb commit 95a1800
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9, '3.10']
python: [3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@
long_description_content_type="text/markdown",
classifiers=[
"Topic :: Utilities",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python",
"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: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3{6,7,8,9,10},black,pylama
envlist = py3{8,9,10},black,pylama
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit 95a1800

Please sign in to comment.