From 4997049cbefbcd2d8c604988dd665c23b913a90c Mon Sep 17 00:00:00 2001 From: Clare Liguori Date: Fri, 27 Feb 2026 11:06:20 -0800 Subject: [PATCH] test: Revert pinning virtualenv now that hatch 1.16.5 is out This reverts commit 1df2438ab356f0cd98e838f932286ce62f6da08d. --- .github/workflows/integration-test.yml | 4 +--- .github/workflows/pypi-publish-on-release.yml | 4 +--- .github/workflows/test-lint.yml | 8 ++------ 3 files changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index e7cdbe131..a40eb0f45 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -48,10 +48,8 @@ jobs: with: python-version: '3.10' - name: Install dependencies - # Pin virtualenv until hatch is fixed. - # See https://github.com/pypa/hatch/issues/2193 run: | - pip install --no-cache-dir hatch 'virtualenv<21' + pip install --no-cache-dir hatch - name: Run integration tests env: AWS_REGION: us-east-1 diff --git a/.github/workflows/pypi-publish-on-release.yml b/.github/workflows/pypi-publish-on-release.yml index 7c96a9789..bf2c9f21d 100644 --- a/.github/workflows/pypi-publish-on-release.yml +++ b/.github/workflows/pypi-publish-on-release.yml @@ -34,11 +34,9 @@ jobs: python-version: '3.10' - name: Install dependencies - # Pin virtualenv until hatch is fixed. - # See https://github.com/pypa/hatch/issues/2193 run: | python -m pip install --upgrade pip - pip install hatch twine 'virtualenv<21' + pip install hatch twine - name: Validate version run: | diff --git a/.github/workflows/test-lint.yml b/.github/workflows/test-lint.yml index 5f5aa6fcd..89cc459de 100644 --- a/.github/workflows/test-lint.yml +++ b/.github/workflows/test-lint.yml @@ -83,10 +83,8 @@ jobs: # Windows typically has audio libraries available by default echo "Windows audio dependencies handled by PyAudio wheels" - name: Install dependencies - # Pin virtualenv until hatch is fixed. - # See https://github.com/pypa/hatch/issues/2193 run: | - pip install --no-cache-dir hatch 'virtualenv<21' + pip install --no-cache-dir hatch - name: Run Unit tests id: tests run: hatch test tests --cover @@ -120,10 +118,8 @@ jobs: sudo apt-get install -y portaudio19-dev libasound2-dev - name: Install dependencies - # Pin virtualenv until hatch is fixed. - # See https://github.com/pypa/hatch/issues/2193 run: | - pip install --no-cache-dir hatch 'virtualenv<21' + pip install --no-cache-dir hatch - name: Run lint id: lint