Skip to content

Commit

Permalink
Merge pull request #40 from s-zeng/s-zeng/python310
Browse files Browse the repository at this point in the history
Add python 3.10 support
  • Loading branch information
s-zeng authored Nov 9, 2021
2 parents 520d2a5 + 4666417 commit 7cb1dc7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- name: Checkout
uses: actions/[email protected]

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/[email protected]
with:
python-version: 3.9
python-version: "3.10"

- name: Install dependencies
run: |
Expand All @@ -40,9 +40,9 @@ jobs:
needs: lint
if: github.event_name != 'release'
strategy:
fail-fast: false
fail-fast: true
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:

- uses: actions/[email protected]
with:
python-version: 3.9
python-version: "3.10"

- name: Install rust
uses: actions-rs/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ serde_json = "1"
serde = "1"
serde_derive = "1"
serde_dhall = "0.10"
pyo3 = "0.14"
pyo3 = "0.15"
thiserror = "1"

[lib]
Expand Down

0 comments on commit 7cb1dc7

Please sign in to comment.