Skip to content

Commit

Permalink
add pip install -U pip on release workflow (#7017)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 08ccaab196713868c40528c20041044f3d0b41fb
  • Loading branch information
pw-ppodhajski authored and Manul from Pathway committed Jul 25, 2024
1 parent 5ccca57 commit d2b1ad6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/package_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ jobs:
rm -rf "${ENV_NAME}"
python"${{ matrix.python-version }}" -m venv "${ENV_NAME}"
source "${ENV_NAME}/bin/activate"
pip install -U pip
WHEEL=(target/wheels/pathway-*.whl)
pip install --no-cache-dir --prefer-binary "${WHEEL}[tests]"
# --confcutdir anything below to avoid picking REPO_TOP_DIR/conftest.py
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ jobs:
rm -rf "${ENV_NAME}"
python -m venv "${ENV_NAME}"
source "${ENV_NAME}/bin/activate"
pip install -U pip
WHEEL=(./wheels/pathway-*.whl)
pip install --no-cache-dir --prefer-binary "${WHEEL}[tests]"
# --confcutdir anything below to avoid picking REPO_TOP_DIR/conftest.py
Expand Down

0 comments on commit d2b1ad6

Please sign in to comment.