-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,15 +53,15 @@ jobs: | |
uses: PyO3/maturin-action@v1 | ||
with: | ||
target: x86_64 | ||
args: -i python --release --out dist --sdist --manifest-path crates/cryo_python/Cargo.toml | ||
args: -i python --release --out dist --sdist --manifest-path crates/python/Cargo.toml | ||
- name: Install built wheels - x86_64 | ||
run: | | ||
pip install cryo_python --no-index --find-links dist --force-reinstall | ||
- name: Build wheels - universal2 | ||
if: ${{ matrix.python-version >= '3.8' || contains(fromJson('["3.10", "3.11", "3.12"]'), matrix.python-version) }} | ||
uses: PyO3/maturin-action@v1 | ||
with: | ||
args: -i python --release --target universal2-apple-darwin --out dist --manifest-path crates/cryo_python/Cargo.toml | ||
args: -i python --release --target universal2-apple-darwin --out dist --manifest-path crates/python/Cargo.toml | ||
- name: Install built wheels - universal2 | ||
if: ${{ matrix.python-version >= '3.8' || contains(fromJson('["3.10", "3.11", "3.12"]'), matrix.python-version) }} | ||
run: | | ||
|
@@ -109,7 +109,7 @@ jobs: | |
uses: PyO3/maturin-action@v1 | ||
with: | ||
target: ${{ matrix.target }} | ||
args: -i python --release --out dist --manifest-path crates/cryo_python/Cargo.toml | ||
args: -i python --release --out dist --manifest-path crates/python/Cargo.toml | ||
- name: Install built wheel | ||
run: | | ||
pip install cryo_python --no-index --find-links dist --force-reinstall | ||
|
@@ -156,7 +156,7 @@ jobs: | |
with: | ||
target: ${{ matrix.target }} | ||
manylinux: auto | ||
args: -i ${{ matrix.python-version }} --release --out dist --manifest-path crates/cryo_python/Cargo.toml | ||
args: -i ${{ matrix.python-version }} --release --out dist --manifest-path crates/python/Cargo.toml | ||
- name: Python UnitTest - cryo_python | ||
if: matrix.target == 'x86_64' | ||
run: | | ||
|
@@ -204,7 +204,7 @@ jobs: | |
with: | ||
target: ${{ matrix.target }} | ||
manylinux: auto | ||
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/cryo_python/Cargo.toml | ||
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/python/Cargo.toml | ||
- uses: uraimo/[email protected] | ||
# skipped cross compiled pypy wheel tests for now | ||
if: ${{ !startsWith(matrix.python, 'pypy') }} | ||
|
@@ -262,7 +262,7 @@ jobs: | |
with: | ||
target: ${{ matrix.target }} | ||
manylinux: auto | ||
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/cryo_python/Cargo.toml | ||
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/python/Cargo.toml | ||
- name: Python UnitTest - cryo_python | ||
run: | | ||
pip install cryo_python --no-index --find-links dist | ||
|
@@ -301,7 +301,7 @@ jobs: | |
with: | ||
target: ${{ matrix.target }} | ||
manylinux: auto | ||
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/cryo_python/Cargo.toml | ||
args: -i ${{ matrix.python }} --release --out dist --manifest-path crates/python/Cargo.toml | ||
- name: Install wheel | ||
run: | | ||
pip install cryo_python --no-index --find-links dist | ||
|