1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-24 04:04:13 +00:00

removed (pretty useless) build_release.sh script - see http://dev.scrapy.org/wiki/ScrapyReleaseProcedure

This commit is contained in:
Pablo Hoffman 2009-12-12 15:54:52 -02:00
parent 024c00a512
commit 1fda0e78d5

View File

@ -1,14 +0,0 @@
#!/bin/sh
# Script to build a Scrapy release. To be run from root dir in Scrapy
# distribution.
# clean repo
hg purge --all
# build packages
version=$(python -c "import scrapy; print scrapy.__version__")
python setup.py sdist
# FIXME: bdist_wininst doesn't work on Unix (it doesn't include the data_files)
# To build the win32 release you need to use Windows for now.
#python setup.py bdist_wininst -t "Scrapy $version" -p "win32"