From 7368494ff52d7f9707a97774362a7baeb45a4e44 Mon Sep 17 00:00:00 2001 From: romainsacchi Date: Sun, 29 Sep 2024 15:46:32 +0200 Subject: [PATCH] Fix `from database` column in dataframe to align with first item of `from key`. --- conda/meta.yaml | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index 7de57cc..5893f6e 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -18,7 +18,7 @@ requirements: - python - setuptools run: - - numpy + - numpy<2.0.0 - pandas - bw2io - bw2data diff --git a/requirements.txt b/requirements.txt index 3ee62f7..e097169 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -numpy +numpy<2.0.0 pandas bw2io bw2data diff --git a/setup.py b/setup.py index c8f9673..d717c2f 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def package_files(directory): # Only if you have non-python data (CSV, etc.). Might need to change the directory name as well. include_package_data=True, install_requires=[ - "numpy", + "numpy<2.0.0", "pandas", "bw2io", "bw2data",