Skip to content

Commit

Permalink
Merge pull request #888 from kobotoolbox/ci-error-pip-sync
Browse files Browse the repository at this point in the history
Bump pip-tools version to 7.x.x
  • Loading branch information
bufke committed Jul 25, 2023
2 parents 11a4d6c + 41a573f commit 3d2d402
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install pip-tools
run: python -m pip install pip-tools==6.\*
run: python -m pip install pip-tools==7.\*
- name: Update apt package lists
run: sudo apt update
- name: Update Debian package lists
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV VIRTUAL_ENV=/opt/venv \

RUN python -m venv "$VIRTUAL_ENV"
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
RUN pip install --quiet pip-tools==6.\*
RUN pip install --quiet pip-tools==7.\*
COPY ./dependencies/pip/requirements.txt "${TMP_DIR}/pip_dependencies.txt"
RUN pip-sync "${TMP_DIR}/pip_dependencies.txt" 1>/dev/null

Expand Down

0 comments on commit 3d2d402

Please sign in to comment.