Ensure NUMPY_LT_1_12 works for beta prerelease.
authorMarten van Kerkwijk <mhvk@astro.utoronto.ca>
Sat, 24 Dec 2016 22:06:08 +0000 (17:06 -0500)
committerOle Streicher <olebole@debian.org>
Wed, 25 Jan 2017 15:17:26 +0000 (15:17 +0000)
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

index fbdd0294d8d9f4550106ab429b989de0649810b9..bda721fc3619441b9b7c982333523dbf4d5e8dbd 100644 (file)
@@ -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():