Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-35690: Require pip version less than 22 #129

Merged
merged 1 commit into from
Jul 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
with:
# Need to clone everything to determine version from git.
fetch-depth: 0
cache: "pip"
cache-dependency-path: "setup.cfg"

- name: Set up Python
uses: actions/setup-python@v4
Expand All @@ -38,7 +36,7 @@ jobs:
- name: Install eups and any other conda packages
shell: bash -l {0}
run: |
conda install -y -q eups conda
conda install -y -q eups conda "pip<22"

# We have two cores so we can speed up the testing with xdist
- name: Install pytest packages
Expand Down Expand Up @@ -103,12 +101,10 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.8
cache: "pip"
cache-dependency-path: "setup.cfg"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade "pip<22"
pip install --upgrade setuptools wheel build

- name: Build and create distribution
Expand Down