Skip to content

Commit

Permalink
馃懛 Update CircleCI build to Python3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
gsantia committed Jun 17, 2021
1 parent 9d8196e commit 64cbb46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
ignore:
- gh-pages
docker:
- image: python:3.7
- image: python:3.8
environment:
- PG_USER=study-creator
- PG_PASS=password
Expand All @@ -24,18 +24,18 @@ jobs:
steps:
- checkout
- restore_cache:
key: deps9-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
key: deps-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: Install dependencies
command: |
pip install -r requirements.txt
pip install -r dev-requirements.txt
- save_cache:
key: deps9-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
key: deps-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
paths:
- ".venv"
- "/usr/local/bin"
- "/usr/local/lib/python3.7/site-packages"
- "/usr/local/lib/python3.8/site-packages"
- run:
name: Run code tests
command: |
Expand Down

0 comments on commit 64cbb46

Please sign in to comment.