Skip to content
This repository was archived by the owner on Mar 22, 2022. It is now read-only.

Commit b5982be

Browse files
authored
Update requests version
* Update requests version * Update travis yaml * Add pathlib2 * Added pathlib2 to dev deps * Added scandir * Updated pip version
1 parent dc87e61 commit b5982be

File tree

4 files changed

+64
-34
lines changed

4 files changed

+64
-34
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ python:
55
- "3.6"
66
install:
77
- 'pip install pipenv'
8-
- 'pipenv sync'
9-
- 'pip install mock pytest pytest-mock pytest-cov coveralls'
8+
- 'pipenv sync --dev'
9+
- 'pip install coveralls'
1010
script:
1111
- 'pipenv run pytest'
1212
after_success:

Pipfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ requests = "*"
88

99
[dev-packages]
1010
mock = "*"
11-
pytest = "*"
12-
pytest-mock = "*"
13-
pytest-cov = "*"
11+
pytest = "==4.0.0"
12+
pytest-mock = "==1.10.0"
13+
pytest-cov = "==2.6.0"
14+
"pathlib2" = "*"
15+
scandir = "*"

Pipfile.lock

Lines changed: 56 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="postcodeapi",
5-
version="1.0.1",
5+
version="1.0.2",
66
description="A tiny wrapper around the Postcode API v2",
77
long_description=open("README.md").read(),
88
url="http://github.com/roedesh/postcodeapi",

0 commit comments

Comments
 (0)