Skip to content

Commit

Permalink
Update maturin upper bound to < 1.3
Browse files Browse the repository at this point in the history
This raises the upper version bound to 1.3.

The package was built and tested with each latest minor version of
maturin since 0.14 (0.15.3, 1.0.1, 1.1.0 and 1.2.3) by incrementally
increasing the upper bound and running :

```
# edit version then :
pip install --verbose --no-binary :all: . && pytest
```

https://www.maturin.rs/changelog
  • Loading branch information
kmichel-aiven committed Sep 5, 2023
1 parent 1393d4d commit 0576f87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
profile: minimal
- name: install maturin
# Keep the Maturin version in sync with pyproject.toml.
run: pip install "maturin>=0.14,<0.15"
run: pip install "maturin>=0.14,<1.3"
# On Linux we'll run Maturin in a Docker container.
if: matrix.platform.os != 'ubuntu-latest'
- name: build wheel
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[build-system]
# Keep the Maturin version in sync with tag.yml.
requires = ["maturin>=0.14,<0.15"]
requires = ["maturin>=0.14,<1.3"]
build-backend = "maturin"

0 comments on commit 0576f87

Please sign in to comment.