Cap pandas to < 1.2.0 to fix gates

pandas>=1.2.0 contains some changes in rounding numbers which makes
the following tests fail when executed by py38

 - test_get_numeric_data_diff_build_name
 - test_get_numeric_data_diff_build_name

with the following assert error

'2018-06-23T00:00:00': 4766.42225,
'2018-06-23T00:00:00': 4766.4222500000005,
                                 ++++++++
'2018-06-24T00:00:00': 4899.55725,
'2018-06-25T00:00:00': 5042.148499999999}}
                               ^^^^^^^^^

Change-Id: Icd33d84d94d58ba36b296d46f4397227fa36ef9c
This commit is contained in:
Martin Kopec 2021-01-22 13:23:07 +00:00
parent 1abd0617a3
commit 23f9274a1a
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ SQLAlchemy!=1.1.5,!=1.1.6,!=1.1.7,!=1.1.8,>=1.0.10 # MIT
flask-jsonpify>=1.5.0 # MIT
PyMySQL>=0.7.6 # MIT License
python-dateutil>=2.4.2 # BSD
pandas>=0.18.0 # BSD
pandas>=0.18.0,<1.2.0 # BSD
numpy>=1.7.0 # BSD
six>=1.9.0 # MIT
pytz>=2013.6 # MIT