Skip to content

Commit e2010d5

Browse files
authored
Merge pull request #173 from yukinarit/python-3.10
feat: Support python 3.10
2 parents f1e2214 + 2f0c557 commit e2010d5

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
uses: actions/[email protected]
1616
with:
1717
persist-credentials: false
18-
- name: Set up Python 3.7
18+
- name: Set up Python 3.10
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: 3.7
21+
python-version: "3.10"
2222
# - name: Restore pip cache
2323
# uses: actions/cache@v2
2424
# with:

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9]
12+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1313
os: [ubuntu-20.04, macos-10.15, windows-2019]
1414
steps:
1515
- name: Checkout
@@ -41,10 +41,10 @@ jobs:
4141
steps:
4242
- name: Checkout
4343
uses: actions/checkout@v2
44-
- name: Set up Python 3.7
44+
- name: Set up Python 3.10
4545
uses: actions/setup-python@v2
4646
with:
47-
python-version: 3.7
47+
python-version: "3.10"
4848
# - name: Restore pip cache
4949
# uses: actions/cache@v2
5050
# with:
@@ -70,10 +70,10 @@ jobs:
7070
steps:
7171
- name: Checkout
7272
uses: actions/checkout@v2
73-
- name: Set up Python 3.7
73+
- name: Set up Python 3.10
7474
uses: actions/setup-python@v2
7575
with:
76-
python-version: 3.7
76+
python-version: "3.10"
7777
# - name: Restore pip cache
7878
# uses: actions/cache@v2
7979
# with:
@@ -98,7 +98,7 @@ jobs:
9898
- name: Set up Python 3.7
9999
uses: actions/setup-python@v2
100100
with:
101-
python-version: 3.7
101+
python-version: "3.7"
102102
# - name: Restore pip cache
103103
# uses: actions/cache@v2
104104
# with:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers=[
2020
"Programming Language :: Python :: 3.7",
2121
"Programming Language :: Python :: 3.8",
2222
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.10",
2324
"Programming Language :: Python :: Implementation :: CPython",
2425
]
2526

0 commit comments

Comments
 (0)