diff --git a/.github/workflows/python-CI.yml b/.github/workflows/python-CI.yml index 3c27e8a9e..0888985e5 100644 --- a/.github/workflows/python-CI.yml +++ b/.github/workflows/python-CI.yml @@ -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: | diff --git a/.github/workflows/release-CI.yml b/.github/workflows/release-CI.yml index d0682f172..70c3c0696 100644 --- a/.github/workflows/release-CI.yml +++ b/.github/workflows/release-CI.yml @@ -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 @@ -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: | @@ -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: | @@ -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: diff --git a/requirements.txt b/requirements.txt index 9e8e72f18..00cda3741 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -maturin +maturin==0.14.12 uvloop; platform_system!="Windows" watchdog==2.2.1 multiprocess==0.70.14