Skip to content

Commit

Permalink
fix conflicting readme for maturin 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-dupre committed Oct 28, 2024
1 parent bdc501c commit 828fca1
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 20 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,15 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: |
3.7
3.8
3.9
3.10
3.11
3.12
3.13
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.6.0 # pinned until 1.8.0 is released
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter --zig
sccache: "true"
Expand All @@ -231,15 +232,16 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: |
3.7
3.8
3.9
3.10
3.11
3.12
3.13
architecture: ${{ matrix.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.6.0 # pinned until 1.8.0 is released
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: "true"
Expand Down Expand Up @@ -268,6 +270,7 @@ jobs:
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.6.0 # pinned until 1.8.0 is released
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: "true"
Expand Down Expand Up @@ -300,6 +303,7 @@ jobs:
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.6.0 # pinned until 1.8.0 is released
target: wasm32-unknown-emscripten
args: --release --out dist -i ${{ env.PYTHON_VERSION }}
sccache: "true"
Expand All @@ -318,6 +322,7 @@ jobs:
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
maturin-version: 1.6.0 # pinned until 1.8.0 is released
command: sdist
args: --out dist
- name: Upload sdist
Expand Down
30 changes: 15 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = ["Rémi Dupré <[email protected]>"]
python = "^3.7"

[tool.poetry.dev-dependencies]
maturin = ">=1,<2"
maturin = ">=1,<1.7" # can't be built with 1.7 due to https://github.com/PyO3/maturin/issues/2244
pdoc = "^12.0.1"

[build-system]
Expand Down

0 comments on commit 828fca1

Please sign in to comment.