Skip to content

Commit 7cb1dc7

Browse files
authored
Merge pull request #40 from s-zeng/s-zeng/python310
Add python 3.10 support
2 parents 520d2a5 + 4666417 commit 7cb1dc7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v2.4.0
2121

22-
- name: Set up Python 3.9
22+
- name: Set up Python 3.10
2323
uses: actions/setup-python@v2.2.2
2424
with:
25-
python-version: 3.9
25+
python-version: "3.10"
2626

2727
- name: Install dependencies
2828
run: |
@@ -40,9 +40,9 @@ jobs:
4040
needs: lint
4141
if: github.event_name != 'release'
4242
strategy:
43-
fail-fast: false
43+
fail-fast: true
4444
matrix:
45-
python-version: [3.6, 3.7, 3.8, 3.9]
45+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
4646
os: [ubuntu-latest, macos-latest, windows-latest]
4747

4848
steps:
@@ -79,7 +79,7 @@ jobs:
7979
strategy:
8080
fail-fast: true
8181
matrix:
82-
python-version: [3.6, 3.7, 3.8, 3.9]
82+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
8383
os: [ubuntu-latest, macos-latest, windows-latest]
8484

8585
steps:
@@ -155,7 +155,7 @@ jobs:
155155

156156
- uses: actions/setup-python@v2.2.2
157157
with:
158-
python-version: 3.9
158+
python-version: "3.10"
159159

160160
- name: Install rust
161161
uses: actions-rs/toolchain@v1.0.7

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ serde_json = "1"
2727
serde = "1"
2828
serde_derive = "1"
2929
serde_dhall = "0.10"
30-
pyo3 = "0.14"
30+
pyo3 = "0.15"
3131
thiserror = "1"
3232

3333
[lib]

0 commit comments

Comments
 (0)