Skip to content

Commit 2639609

Browse files
committed
Update CI to use newer scripts/requirements-dev.txt
1 parent b3ad452 commit 2639609

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.circleci/config.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,18 @@ jobs:
99
- checkout
1010

1111
# Set up a cached virtualenv in which to install things
12-
- run:
13-
name: Merge requirements
14-
command: |
15-
cat scripts/linting/requirements.txt >> scripts/requirements.txt
16-
cat scripts/typing/requirements.txt >> scripts/requirements.txt
1712
- restore_cache:
1813
name: Restore build dependency cache
19-
key: deps-venv-{{ .Branch }}-{{ .Environment.CIRCLE_STAGE }}-{{ checksum "scripts/requirements.txt" }}
14+
key: deps-venv-{{ .Branch }}-{{ .Environment.CIRCLE_STAGE }}-{{ checksum "scripts/requirements-dev.txt" }}
2015
- run:
2116
name: Install dependencies
2217
command: |
2318
python3 -m venv venv
2419
. venv/bin/activate
25-
pip install -r scripts/requirements.txt
20+
pip install -r scripts/requirements-dev.txt
2621
- save_cache:
2722
name: Save build dependency cache
28-
key: deps-venv-{{ .Branch }}-{{ .Environment.CIRCLE_STAGE }}-{{ checksum "scripts/requirements.txt" }}
23+
key: deps-venv-{{ .Branch }}-{{ .Environment.CIRCLE_STAGE }}-{{ checksum "scripts/requirements-dev.txt" }}
2924
paths:
3025
- "venv"
3126

0 commit comments

Comments
 (0)