BUG: Fix numpy.random generation in Backtest.optimize

Fixes https://github.com/kernc/backtesting.py/issues/500
This commit is contained in:
Kernc
2021-10-10 17:01:39 +02:00
committed by kernc
parent 7671f044d5
commit 8b83b3541a
2 changed files with 4 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ if __name__ == '__main__':
'write_to': os.path.join('backtesting', '_version.py'),
},
install_requires=[
'numpy',
'numpy >= 1.17.0',
'pandas >= 0.25.0, != 0.25.0',
'bokeh >= 1.4.0',
],