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

hpk at codespeak.net hpk at codespeak.net
Wed Aug 20 17:13:37 CEST 2008


Author: hpk
Date: Wed Aug 20 17:13:36 2008
New Revision: 57518

Modified:
   py/release/0.9.x/CHANGELOG
   py/release/0.9.x/MANIFEST
   py/release/0.9.x/py/__init__.py
   py/release/0.9.x/setup.py
Log:
version bump, regen


Modified: py/release/0.9.x/CHANGELOG
==============================================================================
--- py/release/0.9.x/CHANGELOG	(original)
+++ py/release/0.9.x/CHANGELOG	Wed Aug 20 17:13:36 2008
@@ -18,6 +18,9 @@
 * fix for py.path.svn* to work with svn 1.5
   (Chris Lamb)
 
+* fix path.relto(otherpath) method on windows to 
+  use normcase for checking if a path is relative.
+
 * py.test's traceback is better parseable from editors 
   (follows the filenames:LINENO: MSG convention)
   (thanks to Osmo Salomaa)

Modified: py/release/0.9.x/MANIFEST
==============================================================================
--- py/release/0.9.x/MANIFEST	(original)
+++ py/release/0.9.x/MANIFEST	Wed Aug 20 17:13:36 2008
@@ -109,6 +109,7 @@
 py/cmdline/pylookup.py
 py/cmdline/pyrest.py
 py/cmdline/pytest.py
+py/cmdline/testing/__init__.py
 py/cmdline/testing/test_generic.py
 py/code/__init__.py
 py/code/code.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 17:13:36 2008
@@ -7,7 +7,7 @@
 """
 from initpkg import initpkg
 
-version = "0.9.2b5"
+version = "0.9.2b6"
 
 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 17:13:36 2008
@@ -1,7 +1,7 @@
 """
     setup file for 'py' package based on:
 
-        https://codespeak.net/svn/py/release/0.9.x, revision=57488
+        https://codespeak.net/svn/py/release/0.9.x, revision=57517
 
     autogenerated by gensetup.py
 """
@@ -15,7 +15,7 @@
     setup(
         name='py',
         description='py lib: agile development and test support library',
-        version='0.9.2b5', 
+        version='0.9.2b6', 
         url='http://pylib.org', 
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], 
@@ -56,6 +56,7 @@
                   'py.builtin',
                   'py.builtin.testing',
                   'py.cmdline',
+                  'py.cmdline.testing',
                   'py.code',
                   'py.code.testing',
                   'py.compat',
@@ -136,7 +137,6 @@
                              'c-extension/greenlet/test_greenlet.py',
                              'c-extension/greenlet/test_remote.py',
                              'c-extension/greenlet/test_throw.py',
-                             'cmdline/testing/test_generic.py',
                              'compat/LICENSE',
                              'compat/testing/test_doctest.txt',
                              'compat/testing/test_doctest2.txt',



More information about the pytest-commit mailing list