From 65f439454ccacd9c70f28ad3ffad84e023b67289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Wed, 16 Aug 2023 16:09:58 -0700 Subject: [PATCH] BUG: fix numpy dev version as their versioning system changed --- astroquery/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astroquery/conftest.py b/astroquery/conftest.py index 5a0fad1015..b5eaf043b3 100644 --- a/astroquery/conftest.py +++ b/astroquery/conftest.py @@ -14,7 +14,7 @@ # Keep this until we require numpy to be >=2.0 -if minversion(np, "2.0.0.dev0+151"): +if minversion(np, "2.0.0.dev0+git20230726"): np.set_printoptions(legacy="1.25")