Skip to content

Commit bc5f6ef

Browse files
committed
Replace Python 3.6, 3.7 with 3.9, 3.10
1 parent 043e9dd commit bc5f6ef

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macOS-latest, windows-latest]
12-
python-version: [3.6, 3.7, 3.8]
12+
python-version: [3.8, 3.9, 3.10]
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Prepare Ubuntu

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@
3131
"Operating System :: OS Independent",
3232
"Programming Language :: Python",
3333
"Programming Language :: Python :: 3",
34-
"Programming Language :: Python :: 3.6",
35-
"Programming Language :: Python :: 3.7",
34+
"Programming Language :: Python :: 3.8",
35+
"Programming Language :: Python :: 3.9",
36+
"Programming Language :: Python :: 3.10",
3637
"Programming Language :: Python :: 3 :: Only",
3738
"Topic :: Scientific/Engineering",
3839
],

0 commit comments

Comments
 (0)