Skip to content

Commit

Permalink
[Dependency] Fix pandas dependency and dev requirements (#2679)
Browse files Browse the repository at this point in the history
dependency fix
  • Loading branch information
Michaelvll authored Oct 25, 2023
1 parent 5ed33f9 commit acd5ab7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ isort==5.12.0
# type checking
mypy==0.991
types-PyYAML
types-requests
# 2.31 requires urlib3>2, which is incompatible with SkyPilot, IBM and
# kubernetes packages, which require urllib3<2.
types-requests<2.31
types-setuptools
types-cachetools

Expand Down
2 changes: 1 addition & 1 deletion sky/setup_files/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def parse_readme(readme: str) -> str:
'jinja2 >= 3.0',
'jsonschema',
'networkx',
'pandas',
'pandas>=1.3.0',
'pendulum',
# PrettyTable with version >=2.0.0 is required for the support of
# `add_rows` method.
Expand Down

0 comments on commit acd5ab7

Please sign in to comment.