From 40fd17e3a2418d54284b53dbcf2ba72dbfbb58ad Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Wed, 2 Dec 2020 13:06:51 -0700 Subject: ENH: Use versioneer to manage numpy versions. The new tags look like '1.21.0.dev0+98.gaa0453721f', where '98' is the number of commits since the 1.21.0 branch was started and 'aa0453721f'. The chosen form may be specified in the 'setup.cfg' file. This PR adds two new files 'numpy/_version.py' and 'numpy/version.py'. The latter is kept because it is part of the public API and is actually used by some downstream projects, but it is no longer dynamically created. See https://github.com/python-versioneer/python-versioneer/ for more information. --- numpy/tests/test_numpy_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/tests/test_numpy_version.py') diff --git a/numpy/tests/test_numpy_version.py b/numpy/tests/test_numpy_version.py index 916ab9383..7fd566815 100644 --- a/numpy/tests/test_numpy_version.py +++ b/numpy/tests/test_numpy_version.py @@ -8,7 +8,7 @@ def test_valid_numpy_version(): # Verify that the numpy version is a valid one (no .post suffix or other # nonsense). See gh-6431 for an issue caused by an invalid version. version_pattern = r"^[0-9]+\.[0-9]+\.[0-9]+(|a[0-9]|b[0-9]|rc[0-9])" - dev_suffix = r"(\.dev0\+([0-9a-f]{7}|Unknown))" + dev_suffix = r"\.dev0\+[0-9]*\.g[0-9a-f]+" if np.version.release: res = re.match(version_pattern, np.__version__) else: -- cgit v1.2.1