-
Notifications
You must be signed in to change notification settings - Fork 4.1k
[CI][Python] Update the Python versions in our nightly CI matrix #34789
Copy link
Copy link
Closed
Description
Generally, we tend to test with quite old python versions. For the core tests like the test-conda-python-xx builds, we test on the full range of supported python versions (3.7-3.11). But for some other custom integrations tests, we test mostly with old versions:
Lines 1506 to 1513 in ddd0a33
| ############################## Integration tests ############################ | |
| {% for python_version, pandas_version, numpy_version, cache_leaf in [("3.7", "1.0", "1.19", True), | |
| ("3.7", "latest", "latest", False), | |
| ("3.8", "latest", "latest", False), | |
| ("3.8", "nightly", "nightly", False), | |
| ("3.9", "upstream_devel", "nightly", False)] %} | |
| test-conda-python-{{ python_version }}-pandas-{{ pandas_version }}: |
Pandas doesn't actually support python 3.7 anymore, so because we use that version for the "latest" build, we don't actually get latest pandas.
Also for example the HDFS tests are using python 3.7
Reactions are currently unavailable