Skip to content

Commit

Permalink
ci: Fix Python CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
jetuk committed Jan 30, 2024
1 parent d13641a commit 4f6b78e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: x86_64
args: --release --out dist --sdist -m python/Cargo.toml
args: --release --out dist --sdist -m pywr-python/Cargo.toml
- name: Install built wheel - x86_64
run: |
pip install pywr --no-index --find-links dist --force-reinstall
Expand All @@ -28,7 +28,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: universal2-apple-darwin
args: --release --out dist -m python/Cargo.toml
args: --release --out dist -m pywr-python/Cargo.toml
- name: Install built wheel - universal2
run: |
pip install pywr --no-index --find-links dist --force-reinstall
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist -m python/Cargo.toml
args: --release --out dist -m pywr-python/Cargo.toml
- name: Install built wheel
run: |
pip install pywr --no-index --find-links dist --force-reinstall
Expand All @@ -83,7 +83,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: --release --out dist -m python/Cargo.toml
args: --release --out dist -m pywr-python/Cargo.toml
- name: Install built wheel
if: matrix.target == 'x86_64'
run: |
Expand Down

0 comments on commit 4f6b78e

Please sign in to comment.