From b1486ac298ae24737d2c1cc80352dcf6b48b664c Mon Sep 17 00:00:00 2001 From: John Agapiou Date: Wed, 4 Dec 2024 08:17:56 -0800 Subject: [PATCH] Remove version restriction on pandas PiperOrigin-RevId: 702732318 Change-Id: Idf8aa5a71bc88d6b2446e6b7e4c50324cfb7a0a7 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 299539e..26bd171 100644 --- a/setup.py +++ b/setup.py @@ -61,6 +61,7 @@ def _remove_excluded(description: str) -> str: 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Topic :: Scientific/Engineering :: Artificial Intelligence', ], packages=setuptools.find_packages(include=['concordia', 'concordia.*']), @@ -78,7 +79,7 @@ def _remove_excluded(description: str) -> str: 'numpy', 'ollama', 'openai>=1.3.0', - 'pandas<=2.0.3', + 'pandas', 'python-dateutil', 'reactivex', 'retry',