Skip to content

Commit 45185e6

Browse files
MAINT:
* Add numpy to install_requires in setup(). * Update version to 0.1.0 in preparation for initial release.
1 parent 9ee6033 commit 45185e6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/source/release-notes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Release Notes
22
-------------
33

4-
X.Y.Z
4+
0.1.0
55
~~~~~
66
* This is the initial release of numpy-financial. The functions were
77
copied from NumPy 1.17.

numpy_financial/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
3-
__version__ = "0.0.1.dev4"
2+
__version__ = "0.1.0"
43

54
from ._financial import *

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def get_version():
5151
packages=find_packages(exclude=['doc']),
5252
author='Travis E. Oliphant et al.',
5353
license='BSD',
54+
install_requires=['numpy>=1.17'],
5455
python_requires='>=3.5',
5556
classifiers=CLASSIFIERS.splitlines(),
5657
project_urls={

0 commit comments

Comments
 (0)