Skip to content

Commit cc5b0a1

Browse files
committed
Version 0.90
1 parent 15e997f commit cc5b0a1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<img src="https://img.shields.io/badge/python-v3-brightgreen.svg"
55
alt="python"></a> &nbsp;
66
<a href="https://pypi.org/project/okama/">
7-
<img src="https://img.shields.io/badge/pypi-v0.89-brightgreen.svg"
7+
<img src="https://img.shields.io/badge/pypi-v0.90-brightgreen.svg"
88
alt="pypi"></a> &nbsp;
99
<a href="https://opensource.org/licenses/MIT">
1010
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg"

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pandas >= 0.25.0
1+
pandas>=0.25.0
22
numpy<=1.19.3
3-
scipy
3+
scipy>=0.14.0
44
matplotlib
55
requests

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='okama',
12-
version='0.89',
12+
version='0.90',
1313
license='MIT',
1414
description='Modern Portfolio Theory (MPT) Python package',
1515
long_description=long_description,
@@ -21,9 +21,9 @@
2121
keywords=['finance', 'investments', 'efficient frontier', 'python', 'optimization'],
2222
packages=['okama', 'tests'],
2323
package_data={'tests': ['*.csv']},
24-
install_requires=['pandas >= 0.25.0',
24+
install_requires=['pandas>=0.25.0',
2525
'numpy<=1.19.3',
26-
'scipy',
26+
'scipy>=0.14.0',
2727
'matplotlib',
2828
'requests'],
2929
classifiers=[

0 commit comments

Comments
 (0)