Skip to content

Commit

Permalink
Bump version to release 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cgevans committed Nov 12, 2017
1 parent 4cb60eb commit 73d5124
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ by the Evans Foundation.
Version Info
============

v1.0.0: scikits.bootstrap now uses pyerf, which means that it doesn't actually
need scipy at all. It should work with PyPy, has some improved error
and warning messages, and should be a bit faster in many cases. The old
ci_abc function has been removed: use method='abc' instead.

v0.3.3: Bug fixes. Warnings have been cleaned up, and are implemented for BCa
when all statistic values are equal (a common confusion in prior versions).
Related numpy warnings are now suppressed. Some tests on Python 2 were
Expand Down
2 changes: 1 addition & 1 deletion scikits/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def _nppf_py(x):
ncdf = np.vectorize(_ncdf_py, [np.float])


__version__ = '1.0.0.dev1'
__version__ = '1.0.0'

# Keep python 2/3 compatibility, without using six. At some point,
# we may need to add six as a requirement, but right now we can avoid it.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages
setup(
name = "scikits.bootstrap",
version = "1.0.0.dev2",
version = "1.0.0",
packages = find_packages(),

install_requires = ['numpy', 'pyerf'],
Expand Down

0 comments on commit 73d5124

Please sign in to comment.