Skip to content

Commit 3d55055

Browse files
authored
Use latest maturin version (#118)
1 parent 7dbb175 commit 3d55055

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

Diff for: .github/workflows/rust.yml

-4
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ jobs:
206206
with:
207207
target: x86_64
208208
args: ${{ env.MATURIN_ARGS }} --sdist
209-
maturin-version: "v0.14.0-beta.7"
210209
- name: Install built wheel - x86_64
211210
run: |
212211
pip install dist/${{ env.PY_PACKAGE_NAME }}-*.whl --force-reinstall
@@ -241,7 +240,6 @@ jobs:
241240
uses: PyO3/maturin-action@v1
242241
with:
243242
args: ${{ env.MATURIN_ARGS }} --universal2
244-
maturin-version: "v0.14.0-beta.7"
245243
- name: Install built wheel - universal2
246244
run: |
247245
pip install dist/${{ env.PY_PACKAGE_NAME }}-*universal2.whl --force-reinstall
@@ -280,7 +278,6 @@ jobs:
280278
with:
281279
target: ${{ matrix.target }}
282280
args: ${{ env.MATURIN_ARGS }}
283-
maturin-version: "v0.14.0-beta.7"
284281
- name: Install built wheel
285282
shell: bash
286283
run: |
@@ -321,7 +318,6 @@ jobs:
321318
target: ${{ matrix.target }}
322319
manylinux: auto
323320
args: ${{ env.MATURIN_ARGS }}
324-
maturin-version: "v0.14.0-beta.7"
325321
- name: Install built wheel
326322
if: matrix.target == 'x86_64'
327323
run: |

Diff for: crates/mate/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["maturin==0.14.0b7"]
2+
requires = ["maturin>=1.0,<2.0"]
33
build-backend = "maturin"
44

55
[project]

Diff for: crates/mate/requirements/dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ black
33
black[jupyter]
44
flake8
55
isort
6-
maturin==0.14.0b7
6+
maturin
77
mypy
88
pandas
99
pytest

0 commit comments

Comments
 (0)