Skip to content

Commit

Permalink
chore: update CI with new maturin version
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineRR committed Feb 3, 2023
1 parent 03cf84e commit db283bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: rustup target add aarch64-apple-darwin
- name: Setup Rust part of the project
run: |
maturin build -i python --universal2 --out dist --no-sdist
maturin build -i python --universal2 --out dist
pip install --no-index --find-links=dist/ robyn
- name: Test with pytest
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Build wheels - universal2
uses: messense/maturin-action@v1
with:
args: -i python --release --universal2 --out dist --no-sdist
args: -i python --release --universal2 --out dist
- name: Install build wheel - universal2
run: |
pip install --force-reinstall dist/robyn*_universal2.whl
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
uses: messense/maturin-action@v1
with:
target: ${{ matrix.target }}
args: -i python --release --out dist --no-sdist
args: -i python --release --out dist
- name: Install build wheel
shell: bash
run: |
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: -i python${{ matrix.python-version }} --release --out dist --no-sdist
args: -i python${{ matrix.python-version }} --release --out dist
- name: Install build wheel
if: matrix.target == 'x86_64'
run: |
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: -i python3.9 --release --out dist --no-sdist
args: -i python3.9 --release --out dist
- uses: uraimo/run-on-arch-action@v2.2.0
name: Install build wheel
with:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
maturin
maturin==0.14.12
uvloop; platform_system!="Windows"
watchdog==2.2.1
multiprocess==0.70.14
Expand Down

0 comments on commit db283bc

Please sign in to comment.