Skip to content

Commit

Permalink
Update the CI build dependency install to match template
Browse files Browse the repository at this point in the history
  • Loading branch information
fselmo committed Apr 24, 2023
1 parent bbbdba2 commit e793b9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Expand Up @@ -22,7 +22,9 @@ common: &common
- cache-v1-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
- run:
name: install dependencies
command: python -m pip install --user tox
command: |
python -m pip install --upgrade pip
python -m pip install tox
- run:
name: run tox
command: python -m tox -r
Expand Down
1 change: 1 addition & 0 deletions newsfragments/45.internal.rst
@@ -0,0 +1 @@
For CircleCI builds, update ``pip`` and pip install ``tox`` under sys instead of ``--user`` to avoid ``virtualenv`` versioning issues.

0 comments on commit e793b9f

Please sign in to comment.