Skip to content

Commit

Permalink
Fix pipenv by pinning to specific semi-recent version.
Browse files Browse the repository at this point in the history
  • Loading branch information
dacox committed Jan 22, 2019
1 parent 96d989d commit 5fd19a4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
- run: apk update && apk add alpine-sdk
- run: cat Pipfile | grep -v flit > Pipfile2
- run: mv Pipfile2 Pipfile
- run: pip install pipenv
- run: pip install pipenv==2018.10.13
- run: pipenv --python $(which python) install --dev
- run: make test
test_py36:
Expand All @@ -32,7 +32,7 @@ jobs:
steps:
- checkout
- run: apk update && apk add alpine-sdk
- run: pip install pipenv
- run: pip install pipenv==2018.10.13
- run: pipenv --python $(which python) install --dev
- run: make test
test_py37:
Expand All @@ -41,7 +41,7 @@ jobs:
steps:
- checkout
- run: apk update && apk add alpine-sdk
- run: pip install pipenv
- run: pip install pipenv==2018.10.13
- run: pipenv --python $(which python) install --dev
- run: make test
test_pypy3:
Expand All @@ -50,7 +50,7 @@ jobs:
steps:
- checkout
- run: apt-get update && apt-get install -y build-essential
- run: pip install pipenv
- run: pip install pipenv==2018.10.13
- run: pipenv --python $(which pypy3) install --dev
- run: make test
publish:
Expand All @@ -60,7 +60,7 @@ jobs:
- run: apk update
- run: apk add git openssh
- checkout
- run: pip install pipenv
- run: pip install pipenv==2018.10.13
- run: pipenv --python $(which python) install --dev
- run: pipenv run flit build
- run: pipenv run flit publish

0 comments on commit 5fd19a4

Please sign in to comment.