Skip to content

Commit

Permalink
Fix circleci build
Browse files Browse the repository at this point in the history
  • Loading branch information
mludvig committed Jun 27, 2022
1 parent 8bbbbf6 commit f9cf9cb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ jobs:
- run:
name: Install prerequisities
command: |
sudo pip install pylint pytest
pip install --user -r requirements.txt
python3 -m pip install pylint
python3 -m pip install -r requirements.txt
pyenv rehash
- run:
name: Check syntax and style
Expand All @@ -47,7 +48,7 @@ jobs:
- run:
name: Verify git tag vs. version
command: |
python setup.py verify
python3 setup.py verify
- run:
name: Init .pypirc
Expand All @@ -63,7 +64,8 @@ jobs:
- run:
name: Install twine
command: |
sudo pip install twine
python3 -m pip install twine
pyenv rehash
- run:
name: Upload to PyPI
Expand Down

0 comments on commit f9cf9cb

Please sign in to comment.