Skip to content

Commit

Permalink
use pip on travis to ensure correct python version runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielfalcao committed Nov 26, 2018
1 parent a796de5 commit ff5f27c
Show file tree
Hide file tree
Showing 5 changed files with 121 additions and 201 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ env:

install:
- pip install -U pip --no-cache-dir
- pip install -U pipenv --no-cache-dir
- pipenv install --dev --skip-lock
- pip install -r development.txt

script:
- make $TEST_TYPE
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ docs:

prepare:
@reset
pip install -r development.txt


.PHONY: docs lint pypi prepare clean pyopenssl unit functional test dependencies all
20 changes: 10 additions & 10 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,27 @@ name = "pypi"
six = "*"

[dev-packages]
ndg-httpsclient = "*"
"flake8" = "*"
"httplib2" = "*"
"pathlib2" = "*"
"urllib3" = "*"
coverage = "*"
cryptography = "==2.3"
ipdb = "*"
mock = "*"
ndg-httpsclient = "*"
nose = "*"
nose-randomly = "*"
pyopenssl = ">=17.5.0"
rednose = "*"
requests = {version = "*", extras = ["security"]}
sure = "*"
tornado = "*"
coverage = "*"
singledispatch = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
twine = "*"
"pathlib2" = "*"
sure = "*"
tornado = "*"
tox = "*"
singledispatch = "*"
pyopenssl = ">=17.5.0"
cryptography = "==2.3"
"urllib3" = "*"
twine = "*"

[requires]
python_version = "3.6"

0 comments on commit ff5f27c

Please sign in to comment.