Skip to content

Commit

Permalink
chore: allow using maturin>=1.0 (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic authored Dec 16, 2024
1 parent 4a87b68 commit f89ad23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
pip install virtualenv
virtualenv venv; venv\Scripts\activate.ps1
pwd
python -m pip install --upgrade pip maturin
python -m pip install --upgrade pip maturin>=1.7.8
python -m pip install pytest
maturin develop --manifest-path py/Cargo.toml
pytest py
Expand All @@ -41,7 +41,7 @@ jobs:
run: |
pip install virtualenv
virtualenv venv; source venv/bin/activate
python -m pip install --upgrade pip maturin
python -m pip install --upgrade pip maturin>=1.7.8
python -m pip install pytest
maturin develop --manifest-path py/Cargo.toml
pytest py
Expand Down
2 changes: 1 addition & 1 deletion py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["maturin==1.7.4"]
requires = ["maturin>=1.0"]
build-backend = "maturin"

[project]
Expand Down

0 comments on commit f89ad23

Please sign in to comment.