summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2020-12-03 08:43:48 -0700
committerCharles Harris <charlesr.harris@gmail.com>2020-12-03 08:43:48 -0700
commit03ec0bc0e7a631e6d7339eae3399602a59e2738c (patch)
tree08d436c966aeced45511d35e7909966b96925850
parentfb3db8cff78681db1a3ac03dc4e19fcc65a93d34 (diff)
downloadnumpy-1.20.0rc1.tar.gz
REL: NumPy 1.20.0rc1 release.v1.20.0rc1
-rw-r--r--pavement.py2
-rwxr-xr-xsetup.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/pavement.py b/pavement.py
index ca1d307f7..0e95a9060 100644
--- a/pavement.py
+++ b/pavement.py
@@ -37,7 +37,7 @@ from paver.easy import Bunch, options, task, sh
#-----------------------------------
# Path to the release notes
-RELEASE_NOTES = 'doc/source/release/1.18.0-notes.rst'
+RELEASE_NOTES = 'doc/source/release/1.20.0-notes.rst'
#-------------------------------------------------------
diff --git a/setup.py b/setup.py
index d46dd8791..d50e21e5c 100755
--- a/setup.py
+++ b/setup.py
@@ -57,8 +57,8 @@ Operating System :: MacOS
MAJOR = 1
MINOR = 20
MICRO = 0
-ISRELEASED = False
-VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
+ISRELEASED = True
+VERSION = '%d.%d.%drc1' % (MAJOR, MINOR, MICRO)
# The first version not in the `Programming Language :: Python :: ...` classifiers above
if sys.version_info >= (3, 10):