Skip to content

Commit

Permalink
Move requirements. (move-coop#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
jburchard authored Oct 1, 2019
1 parent d8c9685 commit 712cd39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-python3.7-{{ checksum "requirements.txt" }}
- v1-dependencies-python3.7-{{ checksum "./docs/requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-python3.7-
- run:
Expand All @@ -68,11 +68,11 @@ jobs:
npm install -g --silent [email protected]
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
pip install -r ./docs/requirements.txt
- save_cache:
paths:
- ./venv
key: v1-dependencies-python3.7-{{ checksum "requirements.txt" }}
key: v1-dependencies-python3.7-{{ checksum "./docs/requirements.txt" }}
- add_ssh_keys:
# This SSH key is the "CircleCI write key v2" in https://github.com/move-coop/parsons/settings/keys
# We need write access to the Parsons repo, so we can push the "gh-pages" branch.
Expand Down
2 changes: 2 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Sphinx==1.8.3
sphinx-rtd-theme==0.4.2
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ psycopg2-binary==2.7.6.1
xmltodict==0.11.0
gspread==3.1.0
oauth2client==4.1.3
Sphinx==1.8.3
sphinx-rtd-theme==0.4.2
facebook-business==4.0.3
google-api-python-client==1.7.7
google-auth==1.6.2
Expand Down

0 comments on commit 712cd39

Please sign in to comment.