Skip to content

Commit 96bf721

Browse files
authored
Merge pull request #234 from jtpio/python-310
2 parents 6b92784 + df146c1 commit 96bf721

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
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
@@ -116,7 +116,7 @@ jobs:
116116
auto-update-conda: true
117117
activate-environment: jupyter_releaser_documentation
118118
environment-file: docs/environment.yml
119-
python-version: "3.9"
119+
python-version: "3.10"
120120
auto-activate-base: false
121121

122122
- name: Cache conda

docs/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: jupyter_releaser_documentation
22
channels:
33
- conda-forge
44
dependencies:
5-
- python=3.9
5+
- python=3.10
66
- sphinx
77
- sphinx-copybutton
88
- pip

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)