Skip to content

Commit

Permalink
Fix publish GH workflow (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart authored Sep 2, 2024
1 parent e4e7477 commit 9c607c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Test built wheel - universal2
run: |
pip install pytest "pydantic>=2.5.2,<3" "anyio>=4.4.0,<5" "trio>=0.25.1,<0.26" "exceptiongroup; python_version<'3.11'"
pip install pycrdt --no-index --find-links dist --force-reinstall
pip install pycrdt --no-deps --no-index --find-links dist --force-reinstall
pytest
- name: Upload wheels
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Test built wheel
run: |
pip install pytest "pydantic>=2.5.2,<3" "anyio>=4.4.0,<5" "trio>=0.25.1,<0.26" "exceptiongroup; python_version<'3.11'"
pip install pycrdt --no-index --find-links dist --force-reinstall
pip install pycrdt --no-deps --no-index --find-links dist --force-reinstall
pytest
- name: Upload wheels
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
if: matrix.target == 'x86_64'
run: |
pip install pytest "pydantic>=2.5.2,<3" "anyio>=4.4.0,<5" "trio>=0.25.1,<0.26" "exceptiongroup; python_version<'3.11'"
pip install pycrdt --no-index --find-links dist --force-reinstall
pip install pycrdt --no-deps --no-index --find-links dist --force-reinstall
pytest
- name: Upload wheels
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
apt-get install -y --no-install-recommends python3 python3-pip
pip3 install -U pip pytest "pydantic>=2.5.2,<3" "anyio>=4.4.0,<5" "trio>=0.25.1,<0.26" "exceptiongroup; python_version<'3.11'"
run: |
pip3 install pycrdt --no-index --find-links dist/ --force-reinstall
pip3 install pycrdt --no-deps --no-index --find-links dist/ --force-reinstall
pytest
- name: Upload wheels
Expand Down

0 comments on commit 9c607c0

Please sign in to comment.