##// END OF EJS Templates
scripts/make-release: remove uploading of PyPI docs...
Thomas De Schampheleire -
r7498:cf81d586 default
parent child Browse files
Show More
@@ -20,7 +20,7 b' virtualenv -p python2 "$venv"'
20
20
21 echo "Install/verify tools needed for building and uploading stuff"
21 echo "Install/verify tools needed for building and uploading stuff"
22 pip install --upgrade -e .
22 pip install --upgrade -e .
23 pip install --upgrade -r dev_requirements.txt Sphinx-PyPI-upload
23 pip install --upgrade -r dev_requirements.txt
24
24
25 echo "Cleanup and update copyrights ... and clean checkout"
25 echo "Cleanup and update copyrights ... and clean checkout"
26 scripts/run-all-cleanup
26 scripts/run-all-cleanup
@@ -50,7 +50,7 b' echo "Verify dist file content"'
50 diff -u <((hg mani | grep -v '^\.hg') | LANG=C sort) <(tar tf dist/Kallithea-$version.tar.gz | sed "s|^$namerel/||" | grep . | grep -v '^kallithea/i18n/.*/LC_MESSAGES/kallithea.mo$\|^Kallithea.egg-info/\|^PKG-INFO$\|/$' | LANG=C sort)
50 diff -u <((hg mani | grep -v '^\.hg') | LANG=C sort) <(tar tf dist/Kallithea-$version.tar.gz | sed "s|^$namerel/||" | grep . | grep -v '^kallithea/i18n/.*/LC_MESSAGES/kallithea.mo$\|^Kallithea.egg-info/\|^PKG-INFO$\|/$' | LANG=C sort)
51
51
52 echo "Verify docs build"
52 echo "Verify docs build"
53 python2 setup.py build_sphinx # not used yet ... but we want to make sure it builds
53 python2 setup.py build_sphinx # the results are not actually used, but we want to make sure it builds
54
54
55 cat - << EOT
55 cat - << EOT
56
56
@@ -69,11 +69,6 b' echo -n "Enter \\"pypi\\" to upload Kallit'
69 read answer
69 read answer
70 [ "$answer" = "pypi" ]
70 [ "$answer" = "pypi" ]
71
71
72 echo "Upload docs to pypi"
73 # See https://wiki.python.org/moin/PyPiDocumentationHosting
74 python2 setup.py build_sphinx upload_sphinx
75 xdg-open http://packages.python.org/Kallithea/installation.html
76
77 echo "Rebuild readthedocs for docs.kallithea-scm.org"
72 echo "Rebuild readthedocs for docs.kallithea-scm.org"
78 xdg-open https://readthedocs.org/projects/kallithea/
73 xdg-open https://readthedocs.org/projects/kallithea/
79 curl -X POST http://readthedocs.org/build/kallithea
74 curl -X POST http://readthedocs.org/build/kallithea
General Comments 0
You need to be logged in to leave comments. Login now