Skip to content

Commit 05b18b9

Browse files
committed
Update CI Python version slots and classifiers
1 parent 06f1519 commit 05b18b9

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on:
44
# This avoids having duplicate builds for a pull request
55
push:
66
branches:
7-
- master
7+
- master
88
pull_request:
99
branches:
10-
- master
10+
- master
1111

1212
jobs:
1313
smoke:
@@ -20,12 +20,12 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['2.7', '3.5', '3.8']
23+
PYTHON_VERSION: ['2.7', '3.7', '3.10']
2424
steps:
2525
- name: Checkout branch
26-
uses: actions/checkout@v1
26+
uses: actions/checkout@v2
2727
- name: Install Conda
28-
uses: goanpeca/setup-miniconda@v1
28+
uses: conda-incubator/setup-miniconda@v2
2929
with:
3030
activate-environment: test
3131
python-version: ${{ matrix.PYTHON_VERSION }}
@@ -65,12 +65,12 @@ jobs:
6565
strategy:
6666
fail-fast: false
6767
matrix:
68-
PYTHON_VERSION: ['3.6', '3.7']
68+
PYTHON_VERSION: ['3.8', '3.9']
6969
steps:
7070
- name: Checkout branch
71-
uses: actions/checkout@v1
71+
uses: actions/checkout@v2
7272
- name: Install Conda
73-
uses: goanpeca/setup-miniconda@v1
73+
uses: conda-incubator/setup-miniconda@v2
7474
with:
7575
activate-environment: test
7676
python-version: ${{ matrix.PYTHON_VERSION }}
@@ -106,12 +106,12 @@ jobs:
106106
strategy:
107107
fail-fast: false
108108
matrix:
109-
PYTHON_VERSION: ['2.7', '3.5', '3.6', '3.7', '3.8']
109+
PYTHON_VERSION: ['2.7', '3.7', '3.8', '3.9', '3.10']
110110
steps:
111111
- name: Checkout branch
112-
uses: actions/checkout@v1
112+
uses: actions/checkout@v2
113113
- name: Install Conda
114-
uses: goanpeca/setup-miniconda@v1
114+
uses: conda-incubator/setup-miniconda@v2
115115
with:
116116
activate-environment: test
117117
python-version: ${{ matrix.PYTHON_VERSION }}
@@ -147,12 +147,12 @@ jobs:
147147
strategy:
148148
fail-fast: false
149149
matrix:
150-
PYTHON_VERSION: ['2.7', '3.5', '3.6', '3.7', '3.8']
150+
PYTHON_VERSION: ['2.7', '3.7', '3.8', '3.9', '3.10']
151151
steps:
152152
- name: Checkout branch
153-
uses: actions/checkout@v1
153+
uses: actions/checkout@v2
154154
- name: Install Conda
155-
uses: goanpeca/setup-miniconda@v1
155+
uses: conda-incubator/setup-miniconda@v2
156156
with:
157157
activate-environment: test
158158
python-version: ${{ matrix.PYTHON_VERSION }}

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ def get_description():
7575
'Programming Language :: Python :: 3.6',
7676
'Programming Language :: Python :: 3.7',
7777
'Programming Language :: Python :: 3.8',
78+
'Programming Language :: Python :: 3.9',
79+
'Programming Language :: Python :: 3.10',
7880
'Topic :: Software Development :: Build Tools',
7981
'Topic :: Software Development :: Libraries :: Python Modules',
8082
),

0 commit comments

Comments
 (0)