Skip to content

Commit 60e0077

Browse files
Modernize testing/support
1 parent b9568c4 commit 60e0077

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
name: Test
2-
on: [push, pull_request]
2+
on: [ push, pull_request ]
33

44
jobs:
55
test:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
9+
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- name: Check out repository
13+
uses: actions/checkout@v4
14+
1315
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v4
1517
with:
1618
python-version: ${{ matrix.python-version }}
1719
- name: Install dependencies

setup.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
packages=setuptools.find_packages(),
1515
test_suite='',
1616
classifiers=[
17-
'Programming Language :: Python :: 3.6',
18-
'Programming Language :: Python :: 3.7',
19-
'Programming Language :: Python :: 3.8',
2017
'Programming Language :: Python :: 3.9',
2118
'Programming Language :: Python :: 3.10',
2219
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)