Skip to content

Commit

Permalink
Upgrade pandas to >=2.2 (#3735)
Browse files Browse the repository at this point in the history
# Description
This is part of supporting Python 3.13 (PR #3646). The previous pandas
constraints cannot install on Python 3.13.

# Changed Behaviour

none

## Type of change

- Code maintenance/cleanup
  • Loading branch information
benclifford authored Jan 7, 2025
1 parent 627ffd9 commit 34a2890
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@
'networkx>=3.2,<3.3',
'Flask>=1.0.2',
'flask_sqlalchemy',
'pandas<2.2',

# pandas uses "loose semantic versioning"
# https://pandas.pydata.org/docs/development/policies.html#version-policy
'pandas<3,>=2.2',

'plotly',
'python-daemon'
],
Expand Down

0 comments on commit 34a2890

Please sign in to comment.