Browse Source

👷 replace build tools install in config.yml

dependabot/pip/requirements/sqlalchemy-1.3.0
Nicolas Droissart 6 years ago
parent
commit
1281ec1d32
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -27,14 +27,14 @@ jobs:
- run: sudo chown -R circleci:circleci /usr/local/lib/python3.9/site-packages
- restore_cache:
key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
- run:
command: sudo apt install libpq-dev python3-dev
name: Install build tools
- run:
command: |
sudo pip install pipenv
pipenv install
name: Install virtual env
- run:
command: sudo apt install libpq-dev python3-dev
name: Install build tools
- run:
command: pip install -r requirements/dev.txt --user
name: Install requirements

Loading…
Cancel
Save