Hello community,

here is the log from the commit of package python-pytest-fixture-config for 
openSUSE:Factory checked in at 2019-06-18 14:45:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytest-fixture-config (Old)
 and      /work/SRC/openSUSE:Factory/.python-pytest-fixture-config.new.4811 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pytest-fixture-config"

Tue Jun 18 14:45:33 2019 rev:2 rq:707100 version:1.7.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-pytest-fixture-config/python-pytest-fixture-config.changes
        2019-02-26 22:15:00.794219408 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-pytest-fixture-config.new.4811/python-pytest-fixture-config.changes
      2019-06-18 14:45:34.593732528 +0200
@@ -1,0 +2,6 @@
+Mon Jun  3 09:18:55 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 1.7.0:
+  * Support pytest 4
+
+-------------------------------------------------------------------

Old:
----
  pytest-fixture-config-1.4.0.tar.gz

New:
----
  pytest-fixture-config-1.7.0.tar.gz

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

Other differences:
------------------
++++++ python-pytest-fixture-config.spec ++++++
--- /var/tmp/diff_new_pack.bVIKfY/_old  2019-06-18 14:45:35.085732451 +0200
+++ /var/tmp/diff_new_pack.bVIKfY/_new  2019-06-18 14:45:35.089732451 +0200
@@ -12,26 +12,26 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
+#
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-pytest-fixture-config
-Version:        1.4.0
+Version:        1.7.0
 Release:        0
-License:        MIT
 Summary:        Fixture configuration utils for pytest
-Url:            https://github.com/manahl/pytest-plugins
+License:        MIT
 Group:          Development/Languages/Python
+URL:            https://github.com/manahl/pytest-plugins
 Source:         
https://files.pythonhosted.org/packages/source/p/pytest-fixture-config/pytest-fixture-config-%{version}.tar.gz
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module pytest}
-BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module setuptools-git}
-Requires:  python-pytest
+BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
+Requires:       python-pytest
 BuildArch:      noarch
-
 %python_subpackages
 
 %description
@@ -39,7 +39,6 @@
 
 %prep
 %setup -q -n pytest-fixture-config-%{version}
-sed -i -e 's:pytest<4.0.0:pytest:g' setup.py
 
 %build
 %python_build
@@ -49,7 +48,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} 
py.test-%{$python_bin_suffix} -v
+%pytest
 
 %files %{python_files}
 %doc README.md CHANGES.md

++++++ pytest-fixture-config-1.4.0.tar.gz -> pytest-fixture-config-1.7.0.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-fixture-config-1.4.0/CHANGES.md 
new/pytest-fixture-config-1.7.0/CHANGES.md
--- old/pytest-fixture-config-1.4.0/CHANGES.md  2019-01-15 09:37:19.000000000 
+0100
+++ new/pytest-fixture-config-1.7.0/CHANGES.md  2019-05-28 08:32:17.000000000 
+0200
@@ -1,7 +1,44 @@
 
 ## Changelog
 
-### 1.4.0 (Unreleased)
+### 1.7.0
+ * All: Support pytest >= 4.0.0
+ * All: Support Python 3.7
+ * pytest-server-fixtures: if host not defined on your machine, default to 
localhost
+ * pytest-server-fixture: Pin to rethinkdb < 2.4.0 due to upstream API changes
+ * pytest-verbose-parametrize: Add support for revamped marker infrastructure
+ * pytest-verbose-parametrize: Fix integration tests to support pytest >= 4.1.0
+ * pytest-virtualenv: Add virtualenv as install requirement. Fixes #122
+ * pytest-webdriver: Fix RemovedInPytest4Warning using getfixturevalue
+ * circleci: Fix checks by skipping coverall submission for developer without 
push access
+ * wheels: Generate universal wheels installable with both python 2.x and 3.x
+ * dist: Remove support for building and distributing *.egg files
+ * VagrantFile: Install python 3.7 and initialize python 3.7 by default
+ * Fix DeprecationWarning warnings using "logger.warning()" function
+
+### 1.6.2 (2019-02-21)
+ * pytest-server-fixtures: suppress stacktrace if kill() is called
+ * pytest-server-fixtures: fix random port logic in TestServerV2
+
+### 1.6.1 (2019-02-12)
+ * pytest-server-fixtures: fix exception when attempting to access hostname 
while server is not started
+
+### 1.6.0 (2019-02-12)
+ * pytest-server-fixtures: added previously removed TestServerV2.kill() 
function
+ * pytest-profiling: pin more-itertools==5.0.0 in integration tests, as that's 
a PY3 only release
+
+### 1.5.1 (2019-01-24)
+ * pytest-verbose-parametrize: fixed unicode parameters when using 
`@pytest.mark.parametrize`
+
+### 1.5.0 (2019-01-23)
+ * pytest-server-fixtures: made postgres fixtures and its tests optional, like 
all other fixtures
+ * pytest-server-fixtures: reverted a fix for pymongo deprecation warning, as 
this will break compatibility with pymongo 3.6.0
+ * pytest-server-fixtures: dropped RHEL5 support in httpd
+
+### 1.4.1 (2019-01-18)
+ * pytest-server-fixtures: server fixture binary path specified in ENV now 
only affect server class 'thread'
+
+### 1.4.0 (2019-01-15)
  * Fixing python 3 compatibility in Simple HTTP Server fixture
  * Fixed broken tests in pytest-profiling
  * Pinned pytest<4.0.0 until all deprecation warnings are fixed.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-fixture-config-1.4.0/PKG-INFO 
new/pytest-fixture-config-1.7.0/PKG-INFO
--- old/pytest-fixture-config-1.4.0/PKG-INFO    2019-01-15 09:37:27.000000000 
+0100
+++ new/pytest-fixture-config-1.7.0/PKG-INFO    2019-05-28 08:32:32.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytest-fixture-config
-Version: 1.4.0
+Version: 1.7.0
 Summary: Fixture configuration utils for py.test
 Home-page: https://github.com/manahl/pytest-plugins
 Author: Edward Easton
@@ -100,7 +100,71 @@
         Changelog
         ---------
         
-        1.4.0 (Unreleased)
+        1.7.0
+        ~~~~~
+        
+        -  All: Support pytest >= 4.0.0
+        -  All: Support Python 3.7
+        -  pytest-server-fixtures: if host not defined on your machine, default
+           to localhost
+        -  pytest-server-fixture: Pin to rethinkdb < 2.4.0 due to upstream API
+           changes
+        -  pytest-verbose-parametrize: Add support for revamped marker
+           infrastructure
+        -  pytest-verbose-parametrize: Fix integration tests to support pytest
+           >= 4.1.0
+        -  pytest-virtualenv: Add virtualenv as install requirement. Fixes #122
+        -  pytest-webdriver: Fix RemovedInPytest4Warning using getfixturevalue
+        -  circleci: Fix checks by skipping coverall submission for developer
+           without push access
+        -  wheels: Generate universal wheels installable with both python 2.x
+           and 3.x
+        -  dist: Remove support for building and distributing \*.egg files
+        -  VagrantFile: Install python 3.7 and initialize python 3.7 by default
+        -  Fix DeprecationWarning warnings using "logger.warning()" function
+        
+        1.6.2 (2019-02-21)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-server-fixtures: suppress stacktrace if kill() is called
+        -  pytest-server-fixtures: fix random port logic in TestServerV2
+        
+        1.6.1 (2019-02-12)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-server-fixtures: fix exception when attempting to access
+           hostname while server is not started
+        
+        1.6.0 (2019-02-12)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-server-fixtures: added previously removed TestServerV2.kill()
+           function
+        -  pytest-profiling: pin more-itertools==5.0.0 in integration tests, as
+           that's a PY3 only release
+        
+        1.5.1 (2019-01-24)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-verbose-parametrize: fixed unicode parameters when using
+           ``@pytest.mark.parametrize``
+        
+        1.5.0 (2019-01-23)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-server-fixtures: made postgres fixtures and its tests
+           optional, like all other fixtures
+        -  pytest-server-fixtures: reverted a fix for pymongo deprecation
+           warning, as this will break compatibility with pymongo 3.6.0
+        -  pytest-server-fixtures: dropped RHEL5 support in httpd
+        
+        1.4.1 (2019-01-18)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-server-fixtures: server fixture binary path specified in ENV
+           now only affect server class 'thread'
+        
+        1.4.0 (2019-01-15)
         ~~~~~~~~~~~~~~~~~~
         
         -  Fixing python 3 compatibility in Simple HTTP Server fixture
@@ -283,3 +347,4 @@
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-fixture-config-1.4.0/VERSION 
new/pytest-fixture-config-1.7.0/VERSION
--- old/pytest-fixture-config-1.4.0/VERSION     2019-01-15 09:37:19.000000000 
+0100
+++ new/pytest-fixture-config-1.7.0/VERSION     2019-05-28 08:32:17.000000000 
+0200
@@ -1 +1 @@
-1.4.0
+1.7.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pytest-fixture-config-1.4.0/pytest_fixture_config.egg-info/PKG-INFO 
new/pytest-fixture-config-1.7.0/pytest_fixture_config.egg-info/PKG-INFO
--- old/pytest-fixture-config-1.4.0/pytest_fixture_config.egg-info/PKG-INFO     
2019-01-15 09:37:26.000000000 +0100
+++ new/pytest-fixture-config-1.7.0/pytest_fixture_config.egg-info/PKG-INFO     
2019-05-28 08:32:31.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytest-fixture-config
-Version: 1.4.0
+Version: 1.7.0
 Summary: Fixture configuration utils for py.test
 Home-page: https://github.com/manahl/pytest-plugins
 Author: Edward Easton
@@ -100,7 +100,71 @@
         Changelog
         ---------
         
-        1.4.0 (Unreleased)
+        1.7.0
+        ~~~~~
+        
+        -  All: Support pytest >= 4.0.0
+        -  All: Support Python 3.7
+        -  pytest-server-fixtures: if host not defined on your machine, default
+           to localhost
+        -  pytest-server-fixture: Pin to rethinkdb < 2.4.0 due to upstream API
+           changes
+        -  pytest-verbose-parametrize: Add support for revamped marker
+           infrastructure
+        -  pytest-verbose-parametrize: Fix integration tests to support pytest
+           >= 4.1.0
+        -  pytest-virtualenv: Add virtualenv as install requirement. Fixes #122
+        -  pytest-webdriver: Fix RemovedInPytest4Warning using getfixturevalue
+        -  circleci: Fix checks by skipping coverall submission for developer
+           without push access
+        -  wheels: Generate universal wheels installable with both python 2.x
+           and 3.x
+        -  dist: Remove support for building and distributing \*.egg files
+        -  VagrantFile: Install python 3.7 and initialize python 3.7 by default
+        -  Fix DeprecationWarning warnings using "logger.warning()" function
+        
+        1.6.2 (2019-02-21)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-server-fixtures: suppress stacktrace if kill() is called
+        -  pytest-server-fixtures: fix random port logic in TestServerV2
+        
+        1.6.1 (2019-02-12)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-server-fixtures: fix exception when attempting to access
+           hostname while server is not started
+        
+        1.6.0 (2019-02-12)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-server-fixtures: added previously removed TestServerV2.kill()
+           function
+        -  pytest-profiling: pin more-itertools==5.0.0 in integration tests, as
+           that's a PY3 only release
+        
+        1.5.1 (2019-01-24)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-verbose-parametrize: fixed unicode parameters when using
+           ``@pytest.mark.parametrize``
+        
+        1.5.0 (2019-01-23)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-server-fixtures: made postgres fixtures and its tests
+           optional, like all other fixtures
+        -  pytest-server-fixtures: reverted a fix for pymongo deprecation
+           warning, as this will break compatibility with pymongo 3.6.0
+        -  pytest-server-fixtures: dropped RHEL5 support in httpd
+        
+        1.4.1 (2019-01-18)
+        ~~~~~~~~~~~~~~~~~~
+        
+        -  pytest-server-fixtures: server fixture binary path specified in ENV
+           now only affect server class 'thread'
+        
+        1.4.0 (2019-01-15)
         ~~~~~~~~~~~~~~~~~~
         
         -  Fixing python 3 compatibility in Simple HTTP Server fixture
@@ -283,3 +347,4 @@
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pytest-fixture-config-1.4.0/pytest_fixture_config.egg-info/requires.txt 
new/pytest-fixture-config-1.7.0/pytest_fixture_config.egg-info/requires.txt
--- old/pytest-fixture-config-1.4.0/pytest_fixture_config.egg-info/requires.txt 
2019-01-15 09:37:26.000000000 +0100
+++ new/pytest-fixture-config-1.7.0/pytest_fixture_config.egg-info/requires.txt 
2019-05-28 08:32:31.000000000 +0200
@@ -1,4 +1,4 @@
-pytest<4.0.0
+pytest
 
 [tests]
 six
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-fixture-config-1.4.0/setup.cfg 
new/pytest-fixture-config-1.7.0/setup.cfg
--- old/pytest-fixture-config-1.4.0/setup.cfg   2019-01-15 09:37:27.000000000 
+0100
+++ new/pytest-fixture-config-1.7.0/setup.cfg   2019-05-28 08:32:32.000000000 
+0200
@@ -5,6 +5,9 @@
        build
        dist
 
+[bdist_wheel]
+universal = 1
+
 [egg_info]
 tag_build = 
 tag_date = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-fixture-config-1.4.0/setup.py 
new/pytest-fixture-config-1.7.0/setup.py
--- old/pytest-fixture-config-1.4.0/setup.py    2019-01-15 09:36:48.000000000 
+0100
+++ new/pytest-fixture-config-1.7.0/setup.py    2019-05-28 08:27:17.000000000 
+0200
@@ -19,9 +19,10 @@
     'Programming Language :: Python :: 3.4',
     'Programming Language :: Python :: 3.5',
     'Programming Language :: Python :: 3.6',
+    'Programming Language :: Python :: 3.7',
 ]
 
-install_requires = ['pytest<4.0.0']
+install_requires = ['pytest']
 
 tests_require = ['six',
                  ]


Reply via email to