Skip to content

Commit b26674a

Browse files
committed
fix: upgrade pip, setuptools, wheel in venv management tests
These test relied on older versions of setuptools,pip and wheel dependencies
1 parent 3ac22d1 commit b26674a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
architecture: x64
2626
- name: Install dependencies
2727
run: |
28-
python -m pip install --upgrade pip
28+
python -m pip install --upgrade pip setuptools wheel
2929
pip install -e .[test]
3030
- name: Test with pytest
3131
run: |

upgrade/tests/manage_venv/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ def _create_venv(path, version, venv_name=None):
2828
venv_path = str(Path(path, venv_name))
2929
run(original_executable, "-m", "venv", venv_path)
3030
venv_executable = get_venv_executable(venv_path)
31+
run(venv_executable, "-m", "pip", "install", "--upgrade", "pip", "setuptools", "wheel")
3132
run(
3233
venv_executable,
3334
"-m",

0 commit comments

Comments
 (0)