Skip to content

Commit 3542c06

Browse files
committed
Drop support for Python 3.6 and 3.7
Sadly GitHub has dropped the ability to run tests with these versions of Python.
1 parent ae0d86c commit 3542c06

File tree

3 files changed

+1
-19
lines changed

3 files changed

+1
-19
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,6 @@ on:
99
- cron: '9 0 * * 1'
1010

1111
jobs:
12-
test_legacy:
13-
runs-on: ubuntu-20.04
14-
strategy:
15-
fail-fast: false
16-
matrix:
17-
python-version: [3.6, 3.7]
18-
steps:
19-
- uses: actions/checkout@v3
20-
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v4
22-
with:
23-
python-version: ${{ matrix.python-version }}
24-
- name: Install dependencies
25-
run: python -m pip install --upgrade pip tox
26-
- name: Run tox
27-
run: tox -e "$(echo py${{ matrix.python-version }} | sed -e 's/[.]//g;s/pypypy/pypy/')" --skip-missing-interpreters false
2812
test:
2913
runs-on: ubuntu-latest
3014
strategy:

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@
6363
'Operating System :: OS Independent',
6464
'Programming Language :: Python',
6565
'Programming Language :: Python :: 3',
66-
'Programming Language :: Python :: 3.6',
67-
'Programming Language :: Python :: 3.7',
6866
'Programming Language :: Python :: 3.8',
6967
'Programming Language :: Python :: 3.9',
7068
'Programming Language :: Python :: 3.10',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,39,310,311,312,313,py3},flake8,docs,headers
2+
envlist = py{38,39,310,311,312,313,py3},flake8,docs,headers
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)