Changeset 1614
- Timestamp:
- 02/11/10 09:08:51 (6 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 removed
- 2 modified
-
distribute_setup.py (added)
-
doc/install_script.sh (modified) (3 diffs)
-
ez_setup.py (deleted)
-
setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/install_script.sh
r1605 r1614 311 311 312 312 echo "Installing setuptools" 313 ( ${DEST_DIR}/bin/python2.6 ${YT_DIR}/ez_setup.py 2>&1 ) 1>> ${LOG_FILE} || do_exit 313 ( ${DEST_DIR}/bin/python2.6 ${YT_DIR}/distribute_setup.py 2>&1 ) 1>> ${LOG_FILE} || do_exit 314 315 echo "Installing Pip." 316 ( ${DEST_DIR}/bin/easy_install-2.6 pip 2>&1 ) 1>> ${LOG_FILE} || do_exit 314 317 315 318 do_setup_py numpy-1.3.0 ${NUMPY_ARGS} … … 339 342 then 340 343 echo "Installing Mercurial." 341 ( ${DEST_DIR}/bin/ easy_install-2.6mercurial 2>&1 ) 1>> ${LOG_FILE} || do_exit344 ( ${DEST_DIR}/bin/pip install -U mercurial 2>&1 ) 1>> ${LOG_FILE} || do_exit 342 345 fi 343 346 … … 345 348 then 346 349 echo "Installing Traits" 347 ( ${DEST_DIR}/bin/ easy_install-2.6-U TraitsGUI TraitsBackendWX 2>&1 ) 1>> ${LOG_FILE} || do_exit350 ( ${DEST_DIR}/bin/pip install -U TraitsGUI TraitsBackendWX 2>&1 ) 1>> ${LOG_FILE} || do_exit 348 351 fi 349 352 -
trunk/setup.py
r1576 r1614 3 3 import time 4 4 import subprocess 5 import ez_setup6 ez_setup.use_setuptools()5 import distribute_setup 6 distribute_setup.use_setuptools() 7 7 8 8 import setuptools … … 11 11 DATA_FILES = [] 12 12 PY2APP_OPTIONS = {'argv_emulation': True} 13 VERSION = " 1.6dev"13 VERSION = "2.0dev" 14 14 15 15 if os.path.exists('MANIFEST'): os.remove('MANIFEST')
