Skip to content

Commit

Permalink
Update dependency on pandas and numpy in pip package (#111)
Browse files Browse the repository at this point in the history
* Update dependency on pandas and numpy in pip package

* Bump version to 1.0.5 to include urllib change

* Update setup.py to version 1.0.5
  • Loading branch information
shifucun authored Jan 28, 2020
1 parent 6d9181a commit 540e746
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
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[email protected]
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 = '[email protected]'
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

0 comments on commit 540e746

Please sign in to comment.