Skip to content

Commit

Permalink
MAINT:
Browse files Browse the repository at this point in the history
* Add numpy to install_requires in setup().
* Update version to 0.1.0 in preparation for initial release.
  • Loading branch information
WarrenWeckesser committed Oct 10, 2019
1 parent 9ee6033 commit 45185e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/source/release-notes.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Release Notes
-------------

X.Y.Z
0.1.0
~~~~~
* This is the initial release of numpy-financial. The functions were
copied from NumPy 1.17.
3 changes: 1 addition & 2 deletions numpy_financial/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@


__version__ = "0.0.1.dev4"
__version__ = "0.1.0"

from ._financial import *
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def get_version():
packages=find_packages(exclude=['doc']),
author='Travis E. Oliphant et al.',
license='BSD',
install_requires=['numpy>=1.17'],
python_requires='>=3.5',
classifiers=CLASSIFIERS.splitlines(),
project_urls={
Expand Down

0 comments on commit 45185e6

Please sign in to comment.