From dd0e3d66cea721b47e57b21c5f16168749bb9bb5 Mon Sep 17 00:00:00 2001
From: Philipp Arras <c@philipp-arras.de>
Date: Wed, 15 Jun 2022 12:14:11 +0200
Subject: [PATCH] Fix versions of dependencies

---
 pyproject.toml | 2 +-
 setup.py       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml
index e137b4de..60547fff 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,5 +2,5 @@
 requires-python = ">=3.7"
 
 [build-system]
-requires = ["setuptools >= 40.6.0", "pybind11 >= 2.6.0", "ducc0", "matplotlib", "h5py", "nifty8"]
+requires = ["setuptools >= 40.6.0", "pybind11 >= 2.6.0", "ducc0 >= 0.23.0", "nifty8 >= 8.0"]
 build-backend = "setuptools.build_meta"
diff --git a/setup.py b/setup.py
index 3f591ad4..631bbd77 100644
--- a/setup.py
+++ b/setup.py
@@ -142,7 +142,7 @@ setup(
     packages=find_packages(include=["resolve", "resolve.*", "resolve_support", "resolve_support.*"]),
     zip_safe=True,
     dependency_links=[],
-    install_requires=["ducc0", "numpy", "nifty8"],
+    install_requires=["ducc0>=0.23.0", "numpy", "nifty8>=8.0"],
     extras_require={"full": ("astropy", "pytest", "pytest-cov", "mpi4py", "python-casacore", "h5py", "matplotlib")},
     ext_modules=extensions,
     entry_points={"console_scripts":
-- 
GitLab