Skip to content

Commit

Permalink
updated version and travis settings
Browse files Browse the repository at this point in the history
  • Loading branch information
newgene committed Feb 25, 2021
1 parent 9ca67ea commit 53c1639
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ python:
- "3.7"
- "3.8"
- "3.9"
install: pip install pytest
install:
- pip install ".[test]" . # install package + test dependencies
script: pytest tests/test.py
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v0.2.5 (2021/02/25)
Fixed mismatched __version__ in v0.2.4
Removed a pandas deprecation message
Better handling of fields, always_list and allow_null parameters (#12, #17)

v0.2.4 (2021/02/22)
Update HTTP request calling signature to match server update. (#17)

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def read(fname):

setup(
name="biothings_client",
version="0.2.4",
version="0.2.5",
author="Cyrus Afrasiabi, Xinghua Zhou, Chunlei Wu",
author_email="cwu@scripps.edu",
description="Python Client for BioThings API services.",
Expand Down Expand Up @@ -40,12 +40,12 @@ def read(fname):
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=[
'requests>=2.3.0',
'nose',
'requests>=2.3.0'
],
extras_require={
'dataframe': ["pandas>=0.18.0"],
'caching': ["requests_cache>=0.4.13"],
'jsonld': ["PyLD>=0.7.2"],
'test': ["pytest"]
}
)

0 comments on commit 53c1639

Please sign in to comment.