-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from ipinfo/uman/fix-deps
Fix missing `six` dependency
- Loading branch information
Showing
9 changed files
with
72 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
""" | ||
|
||
import cachetools | ||
|
||
from .interface import CacheInterface | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
cachetools==2.1.0 | ||
pip-tools==3.1.0 | ||
pycodestyle==2.4.0 | ||
pytest==3.8.2 | ||
python-dateutil==2.6.1 | ||
pytz==2017.2 | ||
# For app | ||
requests>=2.18.4 | ||
cachetools==3.1.1 | ||
pytest==4.5.0 | ||
|
||
# For dev | ||
pip-tools==3.7.0 | ||
black==19.3b0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,18 +8,17 @@ | |
You can visit our developer docs at https://ipinfo.io/developers. | ||
""" | ||
|
||
setup(name='ipinfo', | ||
version='1.1.1', | ||
description='Official Python library for IPInfo', | ||
long_description=long_description, | ||
url='https://github.com/ipinfo/python', | ||
author='James Timmins', | ||
author_email='[email protected]', | ||
license='Apache License 2.0', | ||
packages=['ipinfo', 'ipinfo.cache'], | ||
install_requires=[ | ||
'requests', | ||
'cachetools', | ||
], | ||
include_package_data=True, | ||
zip_safe=False) | ||
setup( | ||
name="ipinfo", | ||
version="1.1.2", | ||
description="Official Python library for IPInfo", | ||
long_description=long_description, | ||
url="https://github.com/ipinfo/python", | ||
author="James Timmins", | ||
author_email="[email protected]", | ||
license="Apache License 2.0", | ||
packages=["ipinfo", "ipinfo.cache"], | ||
install_requires=["requests", "cachetools", "six"], | ||
include_package_data=True, | ||
zip_safe=False, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import pytest | ||
|
||
from ipinfo.details import Details | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters