Skip to content

Commit d0dd600

Browse files
setup: explicit pandas and Python versions map
It seems that setuptools cannot automatically interpret "install latest supported by current Python version" directive since it's trying to install pandas 1.5.0 (supports only Python >= 3.8) for Python 3.6 pipeline. Part of #238
1 parent af1a398 commit d0dd600

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

requirements.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
msgpack>=1.0.4
2-
pandas
2+
pandas<=1.1.5 ; python_version <= '3.6'
3+
pandas<=1.3.5 ; python_version <= '3.7'
4+
pandas>=1.0
35
pytz
46
importlib-metadata >= 1.0 ; python_version < '3.8'

0 commit comments

Comments
 (0)