8000 REL: set version to 1.6.0rc1 · njsmith/numpy@65bcb41 · GitHub
[go: up one dir, main page]

Skip to content

Commit 65bcb41

Browse files
author
Ralf Gommers
committed
REL: set version to 1.6.0rc1
Also a small update to the release scripts.
1 parent 215c97e commit 65bcb41

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

pavement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102

103103
# Start/end of the log (from git)
104104
LOG_START = 'v1.5.0'
105-
LOG_END = 'v1.6.0b1'
105+
LOG_END = 'v1.6.0rc1'
106106

107107

108108
#-------------------------------------------------------

release.sh

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@
55
# downloads, i.e. two versions for Python 2.7. The Intel 32/64-bit version is
66
# for OS X 10.6+, the other dmg installers are for 10.3+ and are built on 10.5
77

8+ 10000
# Check we're using the correct g++/c++ for the 32-bit 2.6 version we build for
9+
# the docs and the 64-bit 2.7 dmg installer.
10+
# We do this because for Python 2.6 we use a symlink on the PATH to select
11+
# /usr/bin/g++-4.0, while for Python 2.7 we need the default 4.2 version.
12+
export PATH=~/Code/tmp/gpp40temp/:$PATH
13+
gpp="$(g++ --version | grep "4.0")"
14+
if [ -z "$gpp" ]; then
15+
echo "Wrong g++ version, we need 4.0 to compile scipy with Python 2.6"
16+
exit 1
17+
fi
18+
819
# bootstrap needed to ensure we build the docs from the right scipy version
920
paver bootstrap
1021
source bootstrap/bin/activate
@@ -19,6 +30,14 @@ paver pdf
1930
paver sdist
2031

2132
export MACOSX_DEPLOYMENT_TARGET=10.6
33+
# Use GCC 4.2 for 64-bit OS X installer for Python 2.7
34+
export PATH=~/Code/tmp/gpp42temp/:$PATH
35+
gpp="$(g++ --version | grep "4.2")"
36+
if [ -z "$gpp" ]; then
37+
echo "Wrong g++ version, we need 4.2 for 64-bit binary for Python 2.7"
38+
exit 1
39+
fi
40+
2241
paver dmg -p 2.7 # 32/64-bit version
2342

2443
paver bdist_superpack -p 3.2

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
MAJOR = 1
5858
MINOR = 6
5959
MICRO = 0
60-
ISRELEASED = False
61-
VERSION = '%d.%d.%db3' % (MAJOR, MINOR, MICRO)
60+
ISRELEASED = True
61+
VERSION = '%d.%d.%rc1' % (MAJOR, MINOR, MICRO)
6262

6363
# Return the git revision as a string
6464
def git_version():

0 commit comments

Comments
 (0)
0