Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python-version: "3.11" # minimum supported lang version

- name: Install dependencies
run: python -m pip install hatch 'click!=8.3.0'
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'

- name: Run pre-commit hooks
run: hatch run lint:install-hooks && hatch run lint:precommit
Expand All @@ -42,7 +42,7 @@ jobs:
python-version: "3.11" # minimum supported lang version

- name: Install dependencies
run: python -m pip install hatch 'click!=8.3.0'
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'

- name: Run
run: hatch run lint:check
Expand All @@ -63,7 +63,7 @@ jobs:
python-version: "3.11" # minimum supported lang version

- name: Install dependencies
run: python -m pip install hatch 'click!=8.3.0'
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'

- name: Check MyPy
run: hatch run mypy:check
Expand All @@ -84,7 +84,7 @@ jobs:
python-version: "3.11" # minimum supported lang version

- name: Install dependencies
run: python -m pip install hatch 'click!=8.3.0'
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'

- name: Run
run: hatch run lint:pkglint
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
python-version: "3.11" # minimum supported lang version

- name: Install dependencies
run: python -m pip install hatch 'click!=8.3.0'
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'

- name: Run
run: hatch run docs:build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: unshare -rn echo "unshare works"

- name: Install dependencies
run: python -m pip install hatch 'click!=8.3.0'
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'

- name: Run tests
run: hatch run test:test
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
run: unshare -rn echo "unshare works"

- name: Install dependencies
run: python -m pip install hatch 'click!=8.3.0'
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'

- name: Run tests
run: HATCH_PYTHON=${{ matrix.python-version }} ./e2e/${{ matrix.test-script }}.sh
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
**/pyproject.toml

- name: Install dependencies
run: python -m pip install hatch 'click!=8.3.0'
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'

- name: Download coverage data
uses: actions/download-artifact@v7
Expand Down
Loading