[py-svn] r57501 - in py/release/0.9.x: . py

hpk at codespeak.net hpk at codespeak.net
Wed Aug 20 14:39:05 CEST 2008


Author: hpk
Date: Wed Aug 20 14:39:03 2008
New Revision: 57501

Modified:
   py/release/0.9.x/py/__init__.py
   py/release/0.9.x/setup.py
Log:
another trysigh.



Modified: py/release/0.9.x/py/__init__.py
==============================================================================
--- py/release/0.9.x/py/__init__.py	(original)
+++ py/release/0.9.x/py/__init__.py	Wed Aug 20 14:39:03 2008
@@ -7,7 +7,7 @@
 """
 from initpkg import initpkg
 
-version = "0.9.2b2"
+version = "0.9.2b3"
 
 initpkg(__name__,
     description = "py lib: agile development and test support library",

Modified: py/release/0.9.x/setup.py
==============================================================================
--- py/release/0.9.x/setup.py	(original)
+++ py/release/0.9.x/setup.py	Wed Aug 20 14:39:03 2008
@@ -18,7 +18,7 @@
     setup(cmdclass=cmdclass,
         name='py',
         description='py lib: agile development and test support library',
-        version='0.9.2b2', 
+        version='0.9.2b3', 
         url='http://pylib.org', 
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], 
@@ -218,7 +218,7 @@
                    os.remove(fncmd)
                 f = open(fncmd, 'w')
                 f.write("@echo off\n")
-                f.write('python %%dp0\%s %%*' %(newbasename))
+                f.write('python "%%~dp0\%s" %%*' %(newbasename))
                 f.close()
 if sys.platform == "win32":
     cmdclass = {'install_scripts': my_install_scripts}



More information about the pytest-commit mailing list