Skip to content

Commit

Permalink
Force gr6j install in worflow
Browse files Browse the repository at this point in the history
  • Loading branch information
s-simoncelli committed Apr 30, 2024
1 parent 348d5f9 commit 2584471
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: -i ${{ matrix.python-version }} --release --out dist --find-interpreter -m gr6j-python/Cargo.toml
args: -i ${{ matrix.python-version }} --release --out dist -m gr6j-python/Cargo.toml
sccache: 'true'
manylinux: auto
- name: Test Python API
run: |
pip install pytest pandas
pip install gr6j --no-index --find-links dist --force-reinstall --no-deps
python -c "import gr6j"
python -m pytest
- name: Upload wheels
Expand All @@ -61,11 +62,12 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: -i ${{ matrix.python-version }} --release --out dist --find-interpreter -m gr6j-python/Cargo.toml
args: -i ${{ matrix.python-version }} --release --out dist -m gr6j-python/Cargo.toml
sccache: 'true'
- name: Test Python API
run: |
pip install pytest pandas
pip install gr6j --no-index --find-links dist --force-reinstall --no-deps
python -c "import gr6j"
python -m pytest
- name: Upload wheels
Expand Down Expand Up @@ -95,6 +97,7 @@ jobs:
- name: Test Python API
run: |
pip install pytest pandas
pip install gr6j --no-index --find-links dist --force-reinstall --no-deps
python -c "import gr6j"
python -m pytest
- name: Upload wheels
Expand Down

0 comments on commit 2584471

Please sign in to comment.