Skip to content

Commit 540e746

Browse files
authored
Update dependency on pandas and numpy in pip package (#111)
* 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
1 parent 6d9181a commit 540e746

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 1.0.5
4+
5+
**Date** - 01/27/2020
6+
7+
**Release Tag** - [v1.0.5](https://github.com/datacommonsorg/api-python/releases/tag/v1.0.5)
8+
9+
**Release Status** - Current head of branch [`master`](https://github.com/datacommonsorg/api-python/tree/master)
10+
11+
New features added to the Python Client API
12+
13+
- Remove the dependency on Pandas and Numpy in package dependency.
14+
- Replace requests with urllib.
15+
316

417
## 1.0.2
518

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This is a Python library for accessing data in the Data Commons knowledge graph.
44
To get started, install this package from pip.
55

6-
pip install git+https://github.com/google/datacommons[email protected]
6+
pip install datacommons
77

88
Once the package is installed, import `datacommons`.
99

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,10 @@
2525
2626
AUTHOR = 'datacommons.org'
2727
REQUIRES_PYTHON = '>=3.6.0'
28-
VERSION = '1.0.3'
28+
VERSION = '1.0.5'
2929

3030
REQUIRED = [
3131
'httplib2',
32-
'requests',
33-
'numpy',
34-
'pandas',
3532
'sphinx',
3633
'sphinxcontrib-napoleon',
3734
'sphinx_rtd_theme',

0 commit comments

Comments
 (0)