We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 793dbda commit bdd2f25Copy full SHA for bdd2f25
1 file changed
.github/workflows/ci.yml
@@ -118,10 +118,11 @@ jobs:
118
uses: actions/setup-python@v5
119
with:
120
python-version: "3.11"
121
- - name: Upgrade virtualenv (compatible)
122
- run: pip install 'virtualenv<=20.23.0' # Pin to max safe version!
123
- name: Install build tools
124
- run: pip install -U pip hatch hatchling twine
+ run: |
+ pip install -U pip
+ pip install 'virtualenv<20.24.0'
125
+ pip install hatch hatchling twine
126
- name: Build sdist and wheel
127
run: hatch build -t sdist -t wheel
128
- name: Check distributions
0 commit comments