Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/pypi-publish-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading