Skip to content

Commit

Permalink
Drop python3.6 support
Browse files Browse the repository at this point in the history
servefile still works with python3.6, we just no longer test this.
  • Loading branch information
sebageek committed Jan 23, 2023
1 parent f23dfd2 commit 9784c82
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10", 3.11]
python: [2.7, 3.7, 3.8, 3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
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 = py27,py36,py37,py38,py39,py310,py311,pep8
envlist = py27,py37,py38,py39,py310,py311,pep8

[testenv]
deps =
Expand Down

0 comments on commit 9784c82

Please sign in to comment.