diff --git a/CHANGELOG.md b/CHANGELOG.md index a32cb3f1..c314b82c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 1.0.5 + +**Date** - 01/27/2020 + +**Release Tag** - [v1.0.5](https://github.com/datacommonsorg/api-python/releases/tag/v1.0.5) + +**Release Status** - Current head of branch [`master`](https://github.com/datacommonsorg/api-python/tree/master) + +New features added to the Python Client API + +- Remove the dependency on Pandas and Numpy in package dependency. +- Replace requests with urllib. + ## 1.0.2 diff --git a/README.md b/README.md index d6dedf8b..dc1d902e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ This is a Python library for accessing data in the Data Commons knowledge graph. To get started, install this package from pip. - pip install git+https://github.com/google/datacommons.git@stable-1.x + pip install datacommons Once the package is installed, import `datacommons`. diff --git a/setup.py b/setup.py index 097784ba..8d42d9ad 100644 --- a/setup.py +++ b/setup.py @@ -25,13 +25,10 @@ EMAIL = 'support@datacommons.org' AUTHOR = 'datacommons.org' REQUIRES_PYTHON = '>=3.6.0' -VERSION = '1.0.3' +VERSION = '1.0.5' REQUIRED = [ 'httplib2', - 'requests', - 'numpy', - 'pandas', 'sphinx', 'sphinxcontrib-napoleon', 'sphinx_rtd_theme',