##// END OF EJS Templates
release 7.8.0
Matthias Bussonnier -
Show More
@@ -24,7 +24,7 b' _version_minor = 8'
24 24 _version_patch = 0
25 25 _version_extra = '.dev'
26 26 # _version_extra = 'b1'
27 # _version_extra = '' # Uncomment this for full releases
27 _version_extra = '' # Uncomment this for full releases
28 28
29 29 # Construct full version string from these.
30 30 _ver = [_version_major, _version_minor, _version_patch]
@@ -56,9 +56,9 b' read'
56 56 echo "Cleaning repository"
57 57 git clean -xfdi
58 58
59 echo "please update version number in ${RED}IPython/core/release.py${NOR} , Do not commit yet – we'll do it later."
59 echo $GREEN"please update version number in ${RED}IPython/core/release.py${NOR} , Do not commit yet – we'll do it later."$NOR
60 60
61 echo "Press enter to continue"
61 echo $GREEN"Press enter to continue"$NOR
62 62 read
63 63
64 64 echo
@@ -66,19 +66,19 b' echo "Attempting to build the docs.."'
66 66 make html -C docs
67 67
68 68 echo
69 echo "Check the docs, press enter to continue"
69 echo $GREEN"Check the docs, press enter to continue"$NOR
70 70 read
71 71
72 72 echo
73 echo "Attempting to build package..."
73 echo $BLUE"Attempting to build package..."$NOR
74 74
75 75 tools/build_release
76 76
77 77 echo
78 78 echo "Let\'s commit : git commit -am \"release $VERSION\" -S"
79 echo $"Press enter to continue"
79 echo $GREEN"Press enter to continue"$NOR
80 80 read
81 git commit -am "release $VERSION" -S
81 git commit -am "release $VERSION" # -S
82 82
83 83 echo
84 84 echo "git push origin \$BRANCH ?"
General Comments 0
You need to be logged in to leave comments. Login now