We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ee6033 commit 45185e6Copy full SHA for 45185e6
doc/source/release-notes.rst
@@ -1,7 +1,7 @@
1
Release Notes
2
-------------
3
4
-X.Y.Z
+0.1.0
5
~~~~~
6
* This is the initial release of numpy-financial. The functions were
7
copied from NumPy 1.17.
numpy_financial/__init__.py
@@ -1,5 +1,4 @@
-
-__version__ = "0.0.1.dev4"
+__version__ = "0.1.0"
from ._financial import *
setup.py
@@ -51,6 +51,7 @@ def get_version():
51
packages=find_packages(exclude=['doc']),
52
author='Travis E. Oliphant et al.',
53
license='BSD',
54
+ install_requires=['numpy>=1.17'],
55
python_requires='>=3.5',
56
classifiers=CLASSIFIERS.splitlines(),
57
project_urls={
0 commit comments