Skip to content

Commit 560673e

Browse files
committed
feat: generate-circleci-config.py no longer requires requirements.txt
1 parent 1bee46e commit 560673e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1212

1313
### Changed
1414

15-
* Nothing
15+
* update ```generate-circleci-config.py``` to eliminate the need for requirements.txt
16+
in spider repos
1617

1718
### Removed
1819

bin/generate-circleci-config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@
9090
- run: check-circleci-config.sh
9191
- restore_cache:
9292
keys:
93-
- v1-dependencies-{{{{ checksum "requirements.txt" }}}}
93+
- v1-dependencies-{{{{ checksum "setup.py" }}}}
9494
- v1-dependencies-
9595
- run:
9696
name: Install Python prerequisites
97-
command: python3.7 -m pip install --requirement requirements.txt
97+
command: python3.7 setup.py install
9898
- save_cache:
9999
paths:
100100
- ./env
101-
key: v1-dependencies-{{{{ checksum "requirements.txt" }}}}
101+
key: v1-dependencies-{{{{ checksum "setup.py" }}}}
102102
- run:
103103
name: Run pip check
104104
command: run-pip-check.sh

0 commit comments

Comments
 (0)