Merge pull request #9362 from freqtrade/dependabot/pip/develop/pandas-2.1.2

Bump pandas from 2.0.3 to 2.1.2
This commit is contained in:
Matthias
2023-10-31 14:29:09 +01:00
committed by GitHub
7 changed files with 26 additions and 19 deletions

View File

@@ -50,8 +50,8 @@ def test_trades_to_ohlcv(trades_history_df, caplog):
assert 'high' in df.columns
assert 'low' in df.columns
assert 'close' in df.columns
assert df.loc[:, 'high'][0] == 0.019627
assert df.loc[:, 'low'][0] == 0.019626
assert df.iloc[0, :]['high'] == 0.019627
assert df.iloc[0, :]['low'] == 0.019626
def test_ohlcv_fill_up_missing_data(testdatadir, caplog):