Skip to content

Commit a45c165

Browse files
authored
Drop Python 3.6 on CIs and start testing with Python 3.10 (#15)
1 parent 1c97c6d commit a45c165

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/static.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
# TODO: check with Python 3, but need to fix the
3030
# errors first
31-
python-version: '3.6'
31+
python-version: '3.8'
3232
architecture: 'x64'
3333
- run: python -m pip install --upgrade pip setuptools
3434
- run: pip install -e .[test]

.github/workflows/test-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6']
23+
PYTHON_VERSION: ['3.10', '3.9', '3.8', '3.7']
2424
timeout-minutes: 10
2525
steps:
2626
- uses: actions/cache@v1

.github/workflows/test-mac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6']
23+
PYTHON_VERSION: ['3.10', '3.9', '3.8', '3.7']
2424
timeout-minutes: 10
2525
steps:
2626
- uses: actions/cache@v1

.github/workflows/test-win.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6']
23+
PYTHON_VERSION: ['3.10', '3.9', '3.8', '3.7']
2424
timeout-minutes: 10
2525
steps:
2626
- uses: actions/cache@v1

0 commit comments

Comments
 (0)