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
2 changes: 1 addition & 1 deletion .github/workflows/reusable_prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Build
run: |
pip install --upgrade hatch "virtualenv<21"
pip install --upgrade hatch 'virtualenv<21; python_version < "3.10"'
hatch -v build

# A precommit hook into the GitHub Action workflow.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
# Tag must be made before building so the generated _version.py files have the correct version
- name: Build
run: |
pip install --upgrade hatch "virtualenv<21"
pip install --upgrade hatch 'virtualenv<21; python_version < "3.10"'
hatch -v build

# A precommit hook into the GitHub Action workflow.
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:

- name: Install dependencies
run: |
pip install --upgrade hatch "virtualenv<21"
pip install --upgrade hatch 'virtualenv<21; python_version < "3.10"'
pip install --upgrade twine

- name: Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable_publish_v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:

- name: Build
run: |
pip install --upgrade hatch "virtualenv<21"
pip install --upgrade hatch 'virtualenv<21; python_version < "3.10"'
hatch -v build

# A precommit hook into the GitHub Action workflow.
Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:

- name: Install dependencies
run: |
pip install --upgrade hatch "virtualenv<21"
pip install --upgrade hatch 'virtualenv<21; python_version < "3.10"'
pip install --upgrade twine

- name: Download
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_python_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Install Hatch
run: |
pip install --upgrade hatch "virtualenv<21"
pip install --upgrade hatch 'virtualenv<21; python_version < "3.10"'

- name: Run Linting
run: hatch -v run lint
Expand Down
Loading