Skip to content

Commit

Permalink
Use pip install --no-deps in CI
Browse files Browse the repository at this point in the history
pip-compile should have listed all required dependencies. There's
something going on with extras that I don't fully understand.
Issue here: jazzband/pip-tools#1752
  • Loading branch information
GeoWill committed Aug 16, 2023
1 parent c309bc6 commit bd29742
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/deploy-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,27 +58,27 @@ jobs:
python -m venv .venv
. .venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements/base.txt -r requirements/testing.txt -r requirements/ci.txt
pip install --no-deps -r requirements/base.txt -r requirements/testing.txt -r requirements/ci.txt
playwright install
- run:
name: install lambda trigger Python dependencies
command: |
. .venv/bin/activate
pip install -r cdk/lambdas/wdiv-s3-trigger/requirements.txt
pip install -r cdk/lambdas/wdiv-s3-trigger/requirements/testing.txt
pip install --no-deps -r cdk/lambdas/wdiv-s3-trigger/requirements.txt
pip install --no-deps -r cdk/lambdas/wdiv-s3-trigger/requirements/testing.txt
- run:
name: install CDK Python dependencies
command: |
. .venv/bin/activate
pip install -r requirements/cdk.txt
pip install --no-deps -r requirements/cdk.txt
- run:
name: install Prod dependencies
command: |
. .venv/bin/activate
pip install -r requirements/production.txt
pip install --no-deps -r requirements/production.txt
- save_cache:
paths:
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
pyenv local $(pyenv versions --bare | grep 3.10 | head -n 1)
python -m venv .venv
. .venv/bin/activate
python -m pip install -r requirements/cdk.txt
python -m pip install --no-deps -r requirements/cdk.txt
- save_cache:
paths:
- ./.venv
Expand Down

0 comments on commit bd29742

Please sign in to comment.