Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down