mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
Merge pull request #1905 from freqtrade/pyup/scheduled-update-2019-06-03
Scheduled weekly dependency update for week 22
This commit is contained in:
commit
71b7b2482f
|
@ -372,20 +372,21 @@ def test_start_calls_optimizer(mocker, default_conf, caplog) -> None:
|
|||
)
|
||||
patch_exchange(mocker)
|
||||
|
||||
default_conf.update({'config': 'config.json.example'})
|
||||
default_conf.update({'epochs': 1})
|
||||
default_conf.update({'timerange': None})
|
||||
default_conf.update({'spaces': 'all'})
|
||||
default_conf.update({'hyperopt_jobs': 1})
|
||||
default_conf.update({'config': 'config.json.example',
|
||||
'epochs': 1,
|
||||
'timerange': None,
|
||||
'spaces': 'all',
|
||||
'hyperopt_jobs': 1, })
|
||||
|
||||
hyperopt = Hyperopt(default_conf)
|
||||
hyperopt.strategy.tickerdata_to_dataframe = MagicMock()
|
||||
|
||||
hyperopt.start()
|
||||
parallel.assert_called_once()
|
||||
|
||||
assert 'Best result:\nfoo result\nwith values:\n\n' in caplog.text
|
||||
assert log_has('Best result:\nfoo result\nwith values:\n', caplog.record_tuples)
|
||||
assert dumper.called
|
||||
# Should be called twice, once for tickerdata, once to save evaluations
|
||||
assert dumper.call_count == 2
|
||||
|
||||
|
||||
def test_format_results(hyperopt):
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# requirements without requirements installable via conda
|
||||
# mainly used for Raspberry pi installs
|
||||
ccxt==1.18.578
|
||||
SQLAlchemy==1.3.3
|
||||
ccxt==1.18.615
|
||||
SQLAlchemy==1.3.4
|
||||
python-telegram-bot==11.1.0
|
||||
arrow==0.13.2
|
||||
arrow==0.14.1
|
||||
cachetools==3.1.1
|
||||
requests==2.22.0
|
||||
urllib3==1.24.2 # pyup: ignore
|
||||
|
@ -29,4 +29,4 @@ python-rapidjson==0.7.1
|
|||
sdnotify==0.3.2
|
||||
|
||||
# Api server
|
||||
flask==1.0.2
|
||||
flask==1.0.3
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
flake8==3.7.7
|
||||
flake8-type-annotations==0.1.0
|
||||
flake8-tidy-imports==2.0.0
|
||||
pytest==4.5.0
|
||||
pytest==4.6.1
|
||||
pytest-mock==1.10.4
|
||||
pytest-asyncio==0.10.0
|
||||
pytest-cov==2.7.1
|
||||
coveralls==1.7.0
|
||||
coveralls==1.8.0
|
||||
mypy==0.701
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Include all requirements to run the bot.
|
||||
-r requirements.txt
|
||||
|
||||
plotly==3.9.0
|
||||
plotly==3.10.0
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Load common requirements
|
||||
-r requirements-common.txt
|
||||
|
||||
numpy==1.16.3
|
||||
numpy==1.16.4
|
||||
pandas==0.24.2
|
||||
scipy==1.3.0
|
||||
|
|
Loading…
Reference in New Issue
Block a user