Is anyone getting a build on cygwin to work.from the nightly build: SciPyTest INFO - Building: scipy SciPyTest INFO - Version: cvs SciPyTest INFO - Url: cvs:pserver:anonymous@scipy.org:/home/cvsroot SciPyTest INFO - Install dir: /cygdrive/c/temp/cygtmp/2.2-1 SciPyTest INFO - Package dir: /cygdrive/c/temp/cygtmp/2.2-1/scipy SciPyTest INFO - Suffix: tgz SciPyTest INFO - Build type: setup SciPyTest INFO - Begin Get Source: scipy SciPyTest INFO - Finished Get Source: scipy SciPyTest INFO - installing w/ /cygdrive/c/temp/cygtmp/2.2-1/bin/python.exe into /cygdrive/c/temp/cygtmp/2.2-1/lib/python2.2/site-packages SciPyTest ERROR - Command /cygdrive/c/temp/cygtmp/2.2-1/bin/python.exe setup.py install Failed (status = 256) Traceback (most recent call last): File "setup.py", line 111, in ? setup_package() File "setup.py", line 90, in setup_package config_list += map(get_separate_package_config,separate_packages) File "setup.py", line 74, in get_separate_package_config return get_package_config(name,'') File "setup.py", line 67, in get_package_config mod = __import__('setup_'+os.path.basename(name)) ImportError: No module named setup_gui_thread ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [tnv] hmmmm....... SciPyTest ERROR - Build failed Traceback (most recent call last): File "scipytest.py", line 352, in doScipyBuild scipy.install() File "autotest.py", line 676, in install self.build() File "autotest.py", line 642, in build self.pythonSetup() File "stdpkgtest.py", line 427, in pythonSetup self.runCommand( '%s setup.py %s install' % File "autotest.py", line 258, in runCommand raise ValueError, 'cmd = %s, status = %d' % ( cmd, status ) ValueError: cmd = /cygdrive/c/temp/cygtmp/2.2-1/bin/python.exe setup.py install, status = 256 ........................ Travis N. Vaught Enthought, Inc. (512)536-1057 http://www.enthought.com ........................
On Fri, 28 Mar 2003, Travis N. Vaught wrote:
Is anyone getting a build on cygwin to work.from the nightly build:
SciPyTest INFO - Building: scipy SciPyTest INFO - Version: cvs SciPyTest INFO - Url:
cvs:pserver:anonymous@scipy.org:/home/cvsroot SciPyTest INFO - Install dir: /cygdrive/c/temp/cygtmp/2.2-1 SciPyTest INFO - Package dir: /cygdrive/c/temp/cygtmp/2.2-1/scipy SciPyTest INFO - Suffix: tgz SciPyTest INFO - Build type: setup SciPyTest INFO - Begin Get Source: scipy SciPyTest INFO - Finished Get Source: scipy SciPyTest INFO - installing w/ /cygdrive/c/temp/cygtmp/2.2-1/bin/python.exe into /cygdrive/c/temp/cygtmp/2.2-1/lib/python2.2/site-packages SciPyTest ERROR - Command /cygdrive/c/temp/cygtmp/2.2-1/bin/python.exe
setup.py install Failed (status = 256) Traceback (most recent call last): File "setup.py", line 111, in ? setup_package() File "setup.py", line 90, in setup_package config_list += map(get_separate_package_config,separate_packages) File "setup.py", line 74, in get_separate_package_config return get_package_config(name,'') File "setup.py", line 67, in get_package_config mod = __import__('setup_'+os.path.basename(name)) ImportError: No module named setup_gui_thread ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [tnv] hmmmm.......
The tarball SciPy-0.2.0_alpha_196.4120_src.tar.gz is missing some setup_*.py files. I have tracked down the problem and I'll commit the fix to CVS as soon as cd cvs/scipy python setup.py sdist cd dist tar xzf Scipy-* cd Scipy-* python setup.py build works again. Pearu
Travis, The issue of missing files in a Scipy tar-ball should be resolved now in CVS. Don't forget to remove the old MANIFEST file before creating scipy tar-ball with `python setup.py sdist`. Pearu
participants (2)
-
Pearu Peterson -
Travis N. Vaught