Skip to content

Commit 13f62b5

Browse files
committed
Pin poetry version
1 parent 6db03eb commit 13f62b5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- checkout
1414
- restore_cache:
15-
key: deps1-{{ .Branch }}-{{ checksum "pyproject.toml" }}
15+
key: deps2-{{ .Branch }}-{{ checksum "pyproject.toml" }}
1616
- run:
1717
name: Wait for db
1818
command: dockerize -wait tcp://localhost:5432 -timeout 1m
@@ -28,11 +28,13 @@ jobs:
2828
poetry config virtualenvs.create false
2929
- run:
3030
command: |
31+
which python
3132
python -m venv ~/.virt
33+
ls -alh ~/.virt/bin
3234
. ~/.virt/bin/activate
3335
poetry install
3436
- save_cache:
35-
key: deps1-{{ .Branch }}-{{ checksum "pyproject.toml" }}
37+
key: deps2-{{ .Branch }}-{{ checksum "pyproject.toml" }}
3638
paths:
3739
- "~/.virt"
3840
- run:

0 commit comments

Comments
 (0)