-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from ACCLAB/dev-update-deps
v0.1.2
- Loading branch information
Showing
10 changed files
with
72 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
from .api import plot | ||
from .bootstrap_tools import bootstrap | ||
|
||
__version__="0.1.1" | ||
__version__="0.1.2" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
.. _Release Notes: | ||
|
||
============= | ||
Release Notes | ||
============= | ||
|
||
|
||
0.1 | ||
------ | ||
|
||
0.1.2 | ||
Update dependencies to | ||
|
||
* numpy v1.13 | ||
* scipy v1.0 | ||
* pandas v0.22 | ||
* seaborn v0.8 | ||
|
||
0.1.1 | ||
`Update LICENSE to BSD-3 Clear. <https://github.com/ACCLAB/DABEST-python/commit/615c4cbb9145cf7b9451bf1840a20475ebcb2e99>`_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,24 +17,29 @@ def check_dependencies(): | |
|
||
try: | ||
import numpy | ||
if int(numpy.__version__.split('.')[1])<=12: | ||
to_install.append('numpy==1.13') | ||
except ImportError: | ||
to_install.append('numpy==1.13') | ||
|
||
try: | ||
import scipy | ||
if int(scipy.__version__.split('.')[0])==0: | ||
to_install.append('scipy==1.0') | ||
except ImportError: | ||
to_install.append('scipy==1.0.0') | ||
try: | ||
import matplotlib | ||
except ImportError: | ||
to_install.append('matplotlib==2.1') | ||
to_install.append('scipy==1.0') | ||
|
||
try: | ||
import pandas | ||
if int(pandas.__version__.split('.')[1])<21: | ||
to_install.append('pandas==0.21') | ||
if int(pandas.__version__.split('.')[1])<=21: | ||
to_install.append('pandas==0.22') | ||
except ImportError: | ||
to_install.append('pandas==0.21') | ||
to_install.append('pandas==0.22') | ||
|
||
try: | ||
import seaborn | ||
if int(seaborn.__version__.split('.')[1])<=7: | ||
to_install.append('seaborn==0.8') | ||
except ImportError: | ||
to_install.append('seaborn==0.8') | ||
|
||
|
@@ -46,7 +51,7 @@ def check_dependencies(): | |
setup(name='dabest', | ||
author='Joses W. Ho', | ||
author_email='[email protected]', | ||
version='0.1.1', | ||
version='0.1.2', | ||
description='Data Analysis and Visualization using Bootstrapped Estimation.', | ||
packages=find_packages(), | ||
install_requires=installs, | ||
|