Hello community,

here is the log from the commit of package python-detox for openSUSE:Factory 
checked in at 2014-08-06 15:32:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-detox (Old)
 and      /work/SRC/openSUSE:Factory/.python-detox.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-detox"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-detox/python-detox.changes        
2013-07-31 17:24:49.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-detox.new/python-detox.changes   
2014-08-06 15:32:05.000000000 +0200
@@ -1,0 +2,16 @@
+Wed Aug  6 09:58:10 UTC 2014 - toddrme2...@gmail.com
+
+- Update to 0.9.3
+  - fix issue6: quickly make detox work with tox-1.6 again 
+    (although not all 1.6 features supported, e.g. --develop 
+    does not work)
+  - fix issue3: don't claim a TROVE identifier of "python3" 
+    because detox itself depends on eventlet which does not work
+    on  py3 yet. (Nevertheless detox will create py3 environments 
+    through tox of course)
+  - fix issue1: support python2.5 again (although we might drop it
+    in the future -- it's enough of tox/detox can _create_ and 
+    handle py25 environments, they don't neccessarily need to 
+    support running themself on py25)
+
+-------------------------------------------------------------------

Old:
----
  detox-0.9.2.tar.gz

New:
----
  detox-0.9.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-detox.spec ++++++
--- /var/tmp/diff_new_pack.L0GiqV/_old  2014-08-06 15:32:06.000000000 +0200
+++ /var/tmp/diff_new_pack.L0GiqV/_new  2014-08-06 15:32:06.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-detox
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,7 +16,7 @@
 
 
 Name:           python-detox
-Version:        0.9.2
+Version:        0.9.3
 Release:        0
 License:        AGPL-3.0
 Summary:        Distributing activities of the tox tool

++++++ detox-0.9.2.tar.gz -> detox-0.9.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/detox-0.9.2/CHANGELOG new/detox-0.9.3/CHANGELOG
--- old/detox-0.9.2/CHANGELOG   2013-03-19 10:52:58.000000000 +0100
+++ new/detox-0.9.3/CHANGELOG   2013-09-04 16:18:05.000000000 +0200
@@ -1,3 +1,17 @@
+0.9.3
+-----------------------
+
+- fix issue6: quickly make detox work with tox-1.6 again (although not all 1.6 
features
+  supported, e.g. --develop does not work)
+
+- fix issue3: don't claim a TROVE identifier of "python3" because detox
+  itself depends on eventlet which does not work on py3 yet. (Nevertheless
+  detox will create py3 environments through tox of course)
+
+- fix issue1: support python2.5 again (although we might drop it in the
+  future -- it's enough of tox/detox can _create_ and handle py25 environments,
+  they don't neccessarily need to support running themselv on py25)
+
 0.9.2
 -----------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/detox-0.9.2/PKG-INFO new/detox-0.9.3/PKG-INFO
--- old/detox-0.9.2/PKG-INFO    2013-03-19 10:53:00.000000000 +0100
+++ new/detox-0.9.3/PKG-INFO    2013-09-04 16:18:06.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: detox
-Version: 0.9.2
+Version: 0.9.3
 Summary: distributing activities of the tox tool
 Home-page: http://bitbucket.org/hpk42/detox
 Author: holger krekel
@@ -19,6 +19,15 @@
         in the same way and with the same options with which you would run
         ``tox``, see the `tox home page`_ for more info.
         
+        Please file issues as "tox" issues using the "detox" component:
+        
+            https://bitbucket.org/hpk42/tox/issues
+        
+        .. note::
+        
+            detox runs only on python2.6 and python2.7 (but supports creation 
of
+            python3 and all environments supported of the underlying "tox" 
command)
+        
         .. _`tox home page`: http://tox.testrun.org/
         
 Platform: unix
@@ -36,4 +45,3 @@
 Classifier: Topic :: Software Development :: Libraries
 Classifier: Topic :: Utilities
 Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/detox-0.9.2/detox/__init__.py 
new/detox-0.9.3/detox/__init__.py
--- old/detox-0.9.2/detox/__init__.py   2013-03-19 10:52:58.000000000 +0100
+++ new/detox-0.9.3/detox/__init__.py   2013-09-04 16:18:05.000000000 +0200
@@ -1 +1 @@
-__version__ = '0.9.2'
+__version__ = '0.9.3'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/detox-0.9.2/detox/proc.py 
new/detox-0.9.3/detox/proc.py
--- old/detox-0.9.2/detox/proc.py       2013-03-19 10:52:58.000000000 +0100
+++ new/detox-0.9.3/detox/proc.py       2013-09-04 16:18:05.000000000 +0200
@@ -1,3 +1,5 @@
+from __future__ import with_statement
+
 import eventlet
 import sys
 import py
@@ -138,7 +140,7 @@
         self._sdistpath = sdist
         if venv and sdist:
             if self.toxsession.installpkg(venv, sdist):
-                self.toxsession.runtestenv(venv, sdist, redirect=True)
+                self.toxsession.runtestenv(venv, redirect=True)
 
     def runtestsmulti(self, envlist):
         pool = GreenPool()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/detox-0.9.2/detox.egg-info/PKG-INFO 
new/detox-0.9.3/detox.egg-info/PKG-INFO
--- old/detox-0.9.2/detox.egg-info/PKG-INFO     2013-03-19 10:53:00.000000000 
+0100
+++ new/detox-0.9.3/detox.egg-info/PKG-INFO     2013-09-04 16:18:06.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: detox
-Version: 0.9.2
+Version: 0.9.3
 Summary: distributing activities of the tox tool
 Home-page: http://bitbucket.org/hpk42/detox
 Author: holger krekel
@@ -19,6 +19,15 @@
         in the same way and with the same options with which you would run
         ``tox``, see the `tox home page`_ for more info.
         
+        Please file issues as "tox" issues using the "detox" component:
+        
+            https://bitbucket.org/hpk42/tox/issues
+        
+        .. note::
+        
+            detox runs only on python2.6 and python2.7 (but supports creation 
of
+            python3 and all environments supported of the underlying "tox" 
command)
+        
         .. _`tox home page`: http://tox.testrun.org/
         
 Platform: unix
@@ -36,4 +45,3 @@
 Classifier: Topic :: Software Development :: Libraries
 Classifier: Topic :: Utilities
 Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/detox-0.9.2/detox.egg-info/requires.txt 
new/detox-0.9.3/detox.egg-info/requires.txt
--- old/detox-0.9.2/detox.egg-info/requires.txt 2013-03-19 10:53:00.000000000 
+0100
+++ new/detox-0.9.3/detox.egg-info/requires.txt 2013-09-04 16:18:06.000000000 
+0200
@@ -1,3 +1,3 @@
-tox>=1.4.3
+tox>=1.6.1
 py>=1.4.13
 eventlet>=0.9.16
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/detox-0.9.2/setup.py new/detox-0.9.3/setup.py
--- old/detox-0.9.2/setup.py    2013-03-19 10:52:58.000000000 +0100
+++ new/detox-0.9.3/setup.py    2013-09-04 16:18:05.000000000 +0200
@@ -15,6 +15,15 @@
 in the same way and with the same options with which you would run
 ``tox``, see the `tox home page`_ for more info.
 
+Please file issues as "tox" issues using the "detox" component:
+
+    https://bitbucket.org/hpk42/tox/issues
+
+.. note::
+
+    detox runs only on python2.6 and python2.7 (but supports creation of
+    python3 and all environments supported of the underlying "tox" command)
+
 .. _`tox home page`: http://tox.testrun.org/
 """
 
@@ -23,7 +32,7 @@
         name='detox',
         description='distributing activities of the tox tool',
         long_description = long_description,
-        version='0.9.2',
+        version='0.9.3',
         url='http://bitbucket.org/hpk42/detox',
         license='AGPL3',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
@@ -39,9 +48,9 @@
                      'Topic :: Software Development :: Libraries',
                      'Topic :: Utilities',
                      'Programming Language :: Python',
-                     'Programming Language :: Python :: 3'],
+                     ],
         packages=['detox', ],
-        install_requires=['tox>=1.4.3',
+        install_requires=['tox>=1.6.1',
             'py>=1.4.13', 'eventlet>=0.9.16',],
         entry_points={'console_scripts': 'detox=detox.main:main'},
     )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/detox-0.9.2/tests/conftest.py 
new/detox-0.9.3/tests/conftest.py
--- old/detox-0.9.2/tests/conftest.py   2013-03-19 10:52:58.000000000 +0100
+++ new/detox-0.9.3/tests/conftest.py   2013-09-04 16:18:05.000000000 +0200
@@ -1,3 +1,4 @@
+from __future__ import with_statement
 import pytest
 import py
 import time
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/detox-0.9.2/tests/test_detox.py 
new/detox-0.9.3/tests/test_detox.py
--- old/detox-0.9.2/tests/test_detox.py 2013-03-19 10:52:58.000000000 +0100
+++ new/detox-0.9.3/tests/test_detox.py 2013-09-04 16:18:05.000000000 +0200
@@ -55,9 +55,9 @@
         assert a == 42
         assert d == 23
 
-@pytest.mark.example1
-@pytest.mark.timeout(20)
 class TestDetoxExample1:
+    pytestmark = [pytest.mark.example1, pytest.mark.timeout(20)]
+
     def test_createsdist(self, detox):
         sdist, = detox.getresources("sdist")
         assert sdist.check()
@@ -71,8 +71,8 @@
     def test_test(self, detox):
         detox.runtests("py")
 
-@pytest.mark.example1
 class TestCmdline:
+    pytestmark = [pytest.mark.example1]
     @pytest.mark.timeout(20)
     def test_runtests(self, cmd):
         result = cmd.rundetox("-e", "py", "-v", "-v")

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to