File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 102
102
103
103
# Start/end of the log (from git)
104
104
LOG_START = 'v1.5.0'
105
- LOG_END = 'v1.6.0b1 '
105
+ LOG_END = 'v1.6.0rc1 '
106
106
107
107
108
108
#-------------------------------------------------------
Original file line number Diff line number Diff line change 5
5
# downloads, i.e. two versions for Python 2.7. The Intel 32/64-bit version is
6
6
# for OS X 10.6+, the other dmg installers are for 10.3+ and are built on 10.5
7
7
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
+
8
19
# bootstrap needed to ensure we build the docs from the right scipy version
9
20
paver bootstrap
10
21
source bootstrap/bin/activate
@@ -19,6 +30,14 @@ paver pdf
19
30
paver sdist
20
31
21
32
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
+
22
41
paver dmg -p 2.7 # 32/64-bit version
23
42
24
43
paver bdist_superpack -p 3.2
Original file line number Diff line number Diff line change 57
57
MAJOR = 1
58
58
MINOR = 6
59
59
MICRO = 0
60
- ISRELEASED = False
61
- VERSION = '%d.%d.%db3 ' % (MAJOR , MINOR , MICRO )
60
+ ISRELEASED = True
61
+ VERSION = '%d.%d.%rc1 ' % (MAJOR , MINOR , MICRO )
62
62
63
63
# Return the git revision as a string
64
64
def git_version ():
You can’t perform that action at this time.
0 commit comments