Skip to content

Commit

Permalink
Install anyio and trio in publish workflow (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart authored Jun 25, 2024
1 parent 4a4a881 commit 89d4696
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 pycrdt --no-index --find-links dist --force-reinstall
pip install pytest "y-py>=0.7.0a1,<0.8" "pydantic>=2.5.2,<3" "objsize"
pip install pytest "y-py>=0.7.0a1,<0.8" "pydantic>=2.5.2,<3" "objsize" "anyio>=4.4.0,<5" "trio>=0.25.1,<0.26"
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 pycrdt --no-index --find-links dist --force-reinstall
pip install pytest "y-py>=0.7.0a1,<0.8" "pydantic>=2.5.2,<3" "objsize"
pip install pytest "y-py>=0.7.0a1,<0.8" "pydantic>=2.5.2,<3" "objsize" "anyio>=4.4.0,<5" "trio>=0.25.1,<0.26"
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 pycrdt --no-index --find-links dist --force-reinstall
pip install pytest "y-py>=0.7.0a1,<0.8" "pydantic>=2.5.2,<3" "objsize"
pip install pytest "y-py>=0.7.0a1,<0.8" "pydantic>=2.5.2,<3" "objsize" "anyio>=4.4.0,<5" "trio>=0.25.1,<0.26"
pytest
- name: Upload wheels
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
install: |
apt-get update
apt-get install -y --no-install-recommends python3 python3-pip
pip3 install -U pip pytest "y-py>=0.7.0a1,<0.8" "pydantic>=2.5.2,<3" "objsize"
pip3 install -U pip pytest "y-py>=0.7.0a1,<0.8" "pydantic>=2.5.2,<3" "objsize" "anyio>=4.4.0,<5" "trio>=0.25.1,<0.26"
run: |
pip3 install pycrdt --no-index --find-links dist/ --force-reinstall
pytest
Expand Down

0 comments on commit 89d4696

Please sign in to comment.