From 34a2890c65f239bb145dca6af76bbdcc0443bc3e Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Tue, 7 Jan 2025 22:11:36 +0000 Subject: [PATCH] Upgrade pandas to >=2.2 (#3735) # 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 --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1511649845..94551e2ba3 100755 --- a/setup.py +++ b/setup.py @@ -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' ],