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

hpk at codespeak.net hpk at codespeak.net
Wed Aug 20 15:18:28 CEST 2008


Author: hpk
Date: Wed Aug 20 15:18:27 2008
New Revision: 57506

Modified:
   py/release/0.9.x/MANIFEST
   py/release/0.9.x/py/__init__.py
   py/release/0.9.x/setup.py
Log:
why think if you do try-and-error?  


Modified: py/release/0.9.x/MANIFEST
==============================================================================
--- py/release/0.9.x/MANIFEST	(original)
+++ py/release/0.9.x/MANIFEST	Wed Aug 20 15:18:27 2008
@@ -2,7 +2,6 @@
 LICENSE
 MANIFEST
 README.txt
-_findpy.py
 ez_setup.py
 py/LICENSE
 py/__init__.py

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 15:18:27 2008
@@ -7,7 +7,7 @@
 """
 from initpkg import initpkg
 
-version = "0.9.2b4"
+version = "0.9.2b5"
 
 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 15:18:27 2008
@@ -15,7 +15,7 @@
     setup(
         name='py',
         description='py lib: agile development and test support library',
-        version='0.9.2b4', 
+        version='0.9.2b5', 
         url='http://pylib.org', 
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], 
@@ -24,11 +24,11 @@
         ext_modules = [Extension("py.c-extension.greenlet.greenlet", 
             ["py/c-extension/greenlet/greenlet.c"]),],
         
-        entry_points={'console_scripts': ['py.cleanup = py.cmdline.pycleanup:main',
-                                          'py.countloc = py.cmdline.pycountloc:main',
-                                          'py.lookup = py.cmdline.pylookup:main',
-                                          'py.rest = py.cmdline.pyrest:main',
-                                          'py.test = py.cmdline.pytest:main']},
+        entry_points={'console_scripts': ['py.cleanup = py.cmdline:pycleanup',
+                                          'py.countloc = py.cmdline:pycountloc',
+                                          'py.lookup = py.cmdline:pylookup',
+                                          'py.rest = py.cmdline:pyrest',
+                                          'py.test = py.cmdline:pytest']},
         long_description='the py lib is a development support library featuring py.test, ad-hoc distributed execution, micro-threads and svn abstractions.',
         classifiers=['Development Status :: 4 - Beta',
                      'Intended Audience :: Developers',



More information about the pytest-commit mailing list