From b6872bd5559e11a16866ed72f9cbd749965e3062 Mon Sep 17 00:00:00 2001 From: Marten van Kerkwijk Date: Sat, 24 Dec 2016 17:06:08 -0500 Subject: [PATCH] Ensure NUMPY_LT_1_12 works for beta prerelease. Pull request: https://github.com/astropy/astropy/pull/5646 Gbp-Pq: Name Ensure-NUMPY_LT_1_12-works-for-beta-prerelease.patch --- astropy/utils/compat/numpycompat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astropy/utils/compat/numpycompat.py b/astropy/utils/compat/numpycompat.py index fbdd029..bda721f 100644 --- a/astropy/utils/compat/numpycompat.py +++ b/astropy/utils/compat/numpycompat.py @@ -21,7 +21,7 @@ NUMPY_LT_1_9_1 = not minversion('numpy', '1.9.1') NUMPY_LT_1_10 = not minversion('numpy', '1.10.0') NUMPY_LT_1_10_4 = not minversion('numpy', '1.10.4') NUMPY_LT_1_11 = not minversion('numpy', '1.11.0') -NUMPY_LT_1_12 = not minversion('numpy', '1.12dev') +NUMPY_LT_1_12 = not minversion('numpy', '1.12') def _monkeypatch_unicode_mask_fill_values(): -- 2.30.2