1 new changeset in pytest:

http://bitbucket.org/hpk42/pytest/changeset/eb755286f7ff/
changeset:   r2134:eb755286f7ff
user:        hpk
date:        2011-01-12 17:21:11
summary:     fix issue17 by requiring an update to pylib which helps to fix it
affected #:  3 files (107 bytes)

--- a/CHANGELOG Tue Jan 11 17:27:34 2011 +0100
+++ b/CHANGELOG Wed Jan 12 17:21:11 2011 +0100
@@ -1,6 +1,7 @@
 Changes between 2.0.0 and 2.0.1.devX
 ----------------------------------------------
-
+- fix issue17 (import-* reporting issue on python3) by
+  requiring py>1.4.0 (1.4.1 is going to include it)
 - fix issue15: make nose compatibility tests compatible
   with python3 (now that nose-1.0 supports python3)
 - remove somewhat surprising "same-conftest" detection because


--- a/pytest.py Tue Jan 11 17:27:34 2011 +0100
+++ b/pytest.py Wed Jan 12 17:21:11 2011 +0100
@@ -1,7 +1,7 @@
 """
 unit and functional testing with Python.
 """
-__version__ = '2.0.1.dev6'
+__version__ = '2.0.1.dev7'
 __all__ = ['main']
 
 from _pytest.core import main, UsageError, _preloadplugins


--- a/setup.py  Tue Jan 11 17:27:34 2011 +0100
+++ b/setup.py  Wed Jan 12 17:21:11 2011 +0100
@@ -22,14 +22,14 @@
         name='pytest',
         description='py.test: simple powerful testing with Python',
         long_description = long_description,
-        version='2.0.1.dev6',
+        version='2.0.1.dev7',
         url='http://pytest.org',
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
         author='holger krekel, Guido Wesdorp, Carl Friedrich Bolz, Armin Rigo, 
Maciej Fijalkowski & others',
         author_email='holger at merlinux.eu',
         entry_points= make_entry_points(),
-        install_requires=['py>=1.4.0'],
+        install_requires=['py>1.4.0'],
         classifiers=['Development Status :: 5 - Production/Stable',
                      'Intended Audience :: Developers',
                      'License :: OSI Approved :: MIT License',

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
py-svn mailing list
py-svn@codespeak.net
http://codespeak.net/mailman/listinfo/py-svn

Reply via email to