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

temporary fix for pip/pipenv bug #3853

Merged
merged 2 commits into from Oct 9, 2018
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
10 changes: 10 additions & 0 deletions .circleci/config.yml
Expand Up @@ -94,6 +94,12 @@ jobs:
name: Install libqt5designer5
command: sudo apt-get update && sudo apt-get install -y libqt5designer5

- run:
name: Install pip==18.0 to work pipenv/pip bug
command: |
cd journalist_gui
pipenv run pip install pip==18.0

- run:
name: Install requirements
command: |
Expand Down Expand Up @@ -129,6 +135,10 @@ jobs:
name: Installation apt pre-reqs
command: apt-get install -y enchant

- run:
name: Install pip==18.0 to work pipenv/pip bug
command: pip install pip==18.0

- run:
name: Installation pre-reqs
command: pip install -U -r securedrop/requirements/develop-requirements.txt
Expand Down