Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/checkout@v2.4.0

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2.2.2
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/setup-python@v2.2.2
with:
python-version: 3.9
python-version: "3.10"

- name: Install rust
uses: actions-rs/toolchain@v1.0.7
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