From aebbeb4ce08baedfd1e5d1c0911a3a8598cf76db Mon Sep 17 00:00:00 2001 From: Christian Rakow Date: Fri, 27 Oct 2023 09:47:42 +0200 Subject: [PATCH] update required versions --- requirements.txt | 7 +++---- setup.py | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index 13c8e6d..9cb49ac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,6 @@ -pandas>=1.4.4 +pandas>=2.1.0 geopandas>=0.6.0 shapely>=1.8.0 xopen>=1.7.0 -protobuf>=3.10.0 -protobuf<=3.19.0 -optuna>=2.7.0 \ No newline at end of file +protobuf>=3.20.0 +optuna>=3.3.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 8883fcf..a2b16e7 100644 --- a/setup.py +++ b/setup.py @@ -26,11 +26,11 @@ packages=["matsim"] + ["matsim." + x for x in find_packages(where="matsim")], install_requires=[ "protobuf >= 3.20.0", - "xopen", - "pandas", + "xopen >= 1.7.0", + "pandas >= 2.1.0", ], extras_require={ - 'calibration': ["optuna >= 2.7.0", "shapely", "geopandas >= 0.6.0"], + 'calibration': ["optuna >= 3.3.0", "shapely >= 1.8.0", "geopandas >= 0.6.0"], # m2cgen has problems with newer xgb, see this issue # https://github.com/BayesWitnesses/m2cgen/issues/581 'scenariogen': ["sumolib", "traci", "lxml", "optax", "requests", "tqdm", "scikit-learn", "xgboost==1.7.1", "lightgbm",