Skip to content

Commit 8b8c780

Browse files
committed
Run CI on Python 3.10
1 parent 68bb703 commit 8b8c780

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/draft-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: true
2222
matrix:
23-
python-version: ["3.9"]
23+
python-version: ["3.10"]
2424
steps:
2525
- name: Checkout
2626
uses: actions/checkout@v2

.github/workflows/draft-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: true
2626
matrix:
27-
python-version: ["3.9"]
27+
python-version: ["3.10"]
2828
env:
2929
VERSION_SPEC: ${{ github.event.inputs.version_spec }}
3030
POST_VERSION_SPEC: ${{ github.event.inputs.post_version_spec }}

.github/workflows/full-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: true
2727
matrix:
28-
python-version: ["3.9"]
28+
python-version: ["3.10"]
2929
env:
3030
VERSION_SPEC: ${{ github.event.inputs.version_spec }}
3131
POST_VERSION_SPEC: ${{ github.event.inputs.post_version_spec }}

.github/workflows/generate-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
python-version: ["3.9"]
22+
python-version: ["3.10"]
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@v2

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-python@v2
1616
with:
17-
python-version: 3.9
17+
python-version: "3.10"
1818

1919
# ref: https://github.com/pre-commit/action
2020
- uses: pre-commit/[email protected]
@@ -48,7 +48,7 @@ jobs:
4848
fail-fast: false
4949
matrix:
5050
os: [ubuntu, windows, macos]
51-
python-version: ["3.7", "3.9"]
51+
python-version: ["3.7", "3.10"]
5252
steps:
5353
- name: Checkout
5454
uses: actions/checkout@v2
@@ -117,7 +117,7 @@ jobs:
117117
auto-update-conda: true
118118
activate-environment: jupyter_releaser_documentation
119119
environment-file: docs/environment.yml
120-
python-version: "3.9"
120+
python-version: "3.10"
121121
auto-activate-base: false
122122

123123
- name: Cache conda

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ classifiers =
1616
Intended Audience :: Science/Research
1717
License :: OSI Approved :: BSD License
1818
Programming Language :: Python
19-
Programming Language :: Python :: 3.6
2019
Programming Language :: Python :: 3.7
2120
Programming Language :: Python :: 3.8
2221
Programming Language :: Python :: 3.9
22+
Programming Language :: Python :: 3.10
2323

2424
[options]
2525
zip_safe = False

0 commit comments

Comments
 (0)