Show More
@@ -89,19 +89,23 b' echo $GREEN"please update version number in ${RED}IPython/core/release.py${NOR} ' | |||
|
89 | 89 | echo $GREEN"Press enter to continue"$NOR |
|
90 | 90 | read |
|
91 | 91 | |
|
92 | echo | |
|
93 | echo "Attempting to build the docs.." | |
|
92 | if ask_section "Build the documentation ?" | |
|
93 | then | |
|
94 | 94 | make html -C docs |
|
95 | ||
|
96 | 95 | echo |
|
97 | 96 | echo $GREEN"Check the docs, press enter to continue"$NOR |
|
98 | 97 | read |
|
99 | 98 | |
|
99 | fi | |
|
100 | ||
|
100 | 101 | echo |
|
101 | 102 | echo $BLUE"Attempting to build package..."$NOR |
|
102 | 103 | |
|
103 | 104 | tools/build_release |
|
105 | rm dist/* | |
|
104 | 106 | |
|
107 | if ask_section "Shoudl we commit, tag, push... etc ? " | |
|
108 | then | |
|
105 | 109 | echo |
|
106 | 110 | echo "Let's commit : git commit -am \"release $VERSION\" -S" |
|
107 | 111 | echo $GREEN"Press enter to commit"$NOR |
@@ -140,17 +144,26 b' echo $GREEN"Press enter to commit"$NOR' | |||
|
140 | 144 | read |
|
141 | 145 | git commit -am "back to dev" -S |
|
142 | 146 | |
|
143 | ||
|
144 | ||
|
145 | ||
|
146 | 147 | echo |
|
147 | 148 | echo $BLUE"let's : git checkout $VERSION"$NOR |
|
148 | 149 | echo $GREEN"Press enter to continue"$NOR |
|
149 | 150 | read |
|
150 | 151 | git checkout $VERSION |
|
152 | fi | |
|
151 | 153 | |
|
152 | # ./tools/release | |
|
153 | # ls ./dist | |
|
154 | # shasum -a 256 dist/* | |
|
154 | if ask_section "Should we build and release ?" | |
|
155 | then | |
|
155 | 156 |
|
|
157 | echo | |
|
158 | echo $BLUE"Attempting to build package..."$NOR | |
|
159 | ||
|
160 | tools/build_release | |
|
156 | 161 | |
|
162 | echo '$ shasum -a 256 dist/*' | |
|
163 | shasum -a 256 dist/* | |
|
164 | ||
|
165 | if ask_section "upload packages ?" | |
|
166 | then | |
|
167 | tools/build_release upload | |
|
168 | fi | |
|
169 | fi |
General Comments 0
You need to be logged in to leave comments.
Login now