Skip to content

Commit

Permalink
single quote pip<24.2
Browse files Browse the repository at this point in the history
- fix: single quote pip<24.2
  • Loading branch information
msftcangoblowm committed Oct 1, 2024
1 parent 8d26975 commit d6d4704
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: "Install dependencies"
run: |
set -xe
python -m pip install pip<24.2 -r requirements/tox.pip
python -m pip install 'pip<24.2' -r requirements/tox.pip
- name: "Run tox for ${{ matrix.python-version }}"
run: |
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ deps =

# Windows can't update the pip version with pip running, so use Python
# to install things.
install_command = python -m pip install -I {opts} {packages} pip<24.2
install_command = python -m pip install -I {opts} {packages} 'pip<24.2'

passenv = *
setenv =
Expand Down

0 comments on commit d6d4704

Please sign in to comment.