Skip to content

Commit

Permalink
Upgrade pip to fix pip install timeout (#2097)
Browse files Browse the repository at this point in the history
Try upgrading pip to fix slow backtracking
  • Loading branch information
fbacall authored and stuzart committed Dec 16, 2024
1 parent 8e07fde commit 3c90331
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ jobs:
${{ runner.os }}-
- name: Install Python dependencies
run: |
python3.9 -m pip install --upgrade pip
python3.9 -m pip install setuptools==58
python3.9 -m pip install -r requirements.txt
- name: Create test database
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ RUN touch config/using-docker #allows us to see within SEEK we are running in a

# Python dependencies from requirements.txt
ENV PATH="/var/www/.local/bin:$PATH"
RUN python3.9 -m pip install --upgrade pip
RUN python3.9 -m pip install setuptools==58
RUN python3.9 -m pip install -r requirements.txt

Expand Down
1 change: 1 addition & 0 deletions script/ansible/Deploy-SEEK.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@
- name: Install SEEK's python requirements
shell: bash -lc "{{ item }}"
with_items:
- python3.9 -m pip install --upgrade pip
- python3.9 -m pip install setuptools==58
- python3.9 -m pip install -r requirements.txt
args:
Expand Down

0 comments on commit 3c90331

Please sign in to comment.