Skip to content

Commit

Permalink
Install pip in venv in separate step
Browse files Browse the repository at this point in the history
  • Loading branch information
EliahKagan committed Feb 21, 2025
1 parent f401b10 commit 4605dd6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cygwin-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,13 @@ jobs:
- name: Set up virtualenv
run: |
python3.9 -m venv .venv
python3.9 -m venv --without-pip .venv
echo 'BASH_ENV=.venv/bin/activate' >>"$GITHUB_ENV"
- name: Install pip in virtualenv
run: |
python -m ensurepip
- name: Update PyPA packages
run: |
# Get the latest pip, wheel, and prior to Python 3.12, setuptools.
Expand Down

0 comments on commit 4605dd6

Please # to comment.