From 9c607c06530bf2e8f00e71bf001ed2937f63828e Mon Sep 17 00:00:00 2001 From: David Brochart Date: Mon, 2 Sep 2024 10:05:40 +0200 Subject: [PATCH] Fix publish GH workflow (#158) --- .github/workflows/publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a684f9b..d539746 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 @@ -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 @@ -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 @@ -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