Hello community,

here is the log from the commit of package python-coveralls for 
openSUSE:Factory checked in at 2019-09-27 14:47:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-coveralls (Old)
 and      /work/SRC/openSUSE:Factory/.python-coveralls.new.2352 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-coveralls"

Fri Sep 27 14:47:11 2019 rev:6 rq:730673 version:1.8.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-coveralls/python-coveralls.changes        
2019-06-13 23:03:00.523411039 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-coveralls.new.2352/python-coveralls.changes  
    2019-09-27 14:47:16.364948193 +0200
@@ -1,0 +2,6 @@
+Fri Sep 13 10:37:42 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 1.8.2:
+  * metadata changes
+
+-------------------------------------------------------------------

Old:
----
  1.8.0.tar.gz

New:
----
  1.8.2.tar.gz

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

Other differences:
------------------
++++++ python-coveralls.spec ++++++
--- /var/tmp/diff_new_pack.oOGDcs/_old  2019-09-27 14:47:17.176946082 +0200
+++ /var/tmp/diff_new_pack.oOGDcs/_new  2019-09-27 14:47:17.176946082 +0200
@@ -18,12 +18,12 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-coveralls
-Version:        1.8.0
+Version:        1.8.2
 Release:        0
 Summary:        Module for showing coverage stats online via coverallsio
 License:        MIT
 Group:          Development/Languages/Python
-URL:            http://github.com/coveralls-clients/coveralls-python
+URL:            https://github.com/coveralls-clients/coveralls-python
 Source:         
https://github.com/coveralls-clients/coveralls-python/archive/%{version}.tar.gz
 BuildRequires:  %{python_module PyYAML >= 3.10}
 BuildRequires:  %{python_module coverage >= 3.6}

++++++ 1.8.0.tar.gz -> 1.8.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/coveralls-python-1.8.0/CHANGELOG.md 
new/coveralls-python-1.8.2/CHANGELOG.md
--- old/coveralls-python-1.8.0/CHANGELOG.md     2019-06-02 02:43:18.000000000 
+0200
+++ new/coveralls-python-1.8.2/CHANGELOG.md     2019-07-29 21:36:54.000000000 
+0200
@@ -1,3 +1,19 @@
+<a name="1.8.2"></a>
+## 1.8.2 (2019-07-29)
+
+### Internal
+
+* **dependencies**: update pass urllib3<1.25 pin, now that that's fixed.
+
+<a name="1.8.1"></a>
+## 1.8.1 (2019-06-16)
+
+#### Bug Fixes
+
+* **dependencies:**  pin `coverage` to `< 5.0`, since the current `5.0` alphas 
are
+                     introducing breaking changes. Once `5.0` is stable, we'll
+                     remove the pin.
+
 <a name="1.8.0"></a>
 ## 1.8.0 (2019-06-02)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/coveralls-python-1.8.0/coveralls/version.py 
new/coveralls-python-1.8.2/coveralls/version.py
--- old/coveralls-python-1.8.0/coveralls/version.py     2019-06-02 
02:43:18.000000000 +0200
+++ new/coveralls-python-1.8.2/coveralls/version.py     2019-07-29 
21:36:54.000000000 +0200
@@ -1 +1 @@
-__version__ = '1.8.0'
+__version__ = '1.8.2'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/coveralls-python-1.8.0/docs/authors.rst 
new/coveralls-python-1.8.2/docs/authors.rst
--- old/coveralls-python-1.8.0/docs/authors.rst 2019-06-02 02:43:18.000000000 
+0200
+++ new/coveralls-python-1.8.2/docs/authors.rst 2019-07-29 21:36:54.000000000 
+0200
@@ -3,6 +3,6 @@
 
 Coveralls is written and maintained by various contributors, without whom none 
of this would be possible. For a full list, see `GitHub`_.
 
-Spcial thanks goes to the original maintainer, Ilya Baryshev.
+Special thanks goes to the original maintainer, Ilya Baryshev.
 
 .. _GitHub: 
https://github.com/coveralls-clients/coveralls-python/graphs/contributors
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/coveralls-python-1.8.0/setup.py 
new/coveralls-python-1.8.2/setup.py
--- old/coveralls-python-1.8.0/setup.py 2019-06-02 02:43:18.000000000 +0200
+++ new/coveralls-python-1.8.2/setup.py 2019-07-29 21:36:54.000000000 +0200
@@ -32,15 +32,15 @@
             'coveralls = coveralls.cli:main',
         ],
     },
-    install_requires=['docopt>=0.6.1', 'coverage>=3.6', 'requests>=1.0.0'],
+    install_requires=[
+        'coverage>=3.6,<5.0',
+        'docopt>=0.6.1',
+        'requests>=1.0.0',
+    ],
     tests_require=['mock', 'pytest', 'sh>=1.08'],
     extras_require={
         'yaml': ['PyYAML>=3.10'],
-        # See https://github.com/kennethreitz/requests/issues/5067
-        # We need to stay aligned with requests' pin to ensure urllib3 updates
-        # don't break pip installation.
-        # See https://github.com/kennethreitz/requests/blob/master/setup.py
-        ':python_version < "3"': ['urllib3[secure]>=1.21.1,<1.25'],
+        ':python_version < "3"': ['urllib3[secure]'],
     },
     classifiers=[
         'Development Status :: 5 - Production/Stable',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/coveralls-python-1.8.0/tox.ini 
new/coveralls-python-1.8.2/tox.ini
--- old/coveralls-python-1.8.0/tox.ini  2019-06-02 02:43:18.000000000 +0200
+++ new/coveralls-python-1.8.2/tox.ini  2019-07-29 21:36:54.000000000 +0200
@@ -1,5 +1,5 @@
 [tox]
-envlist = 
py{27,34,35,py,py3}-cov{3,4,41}-{default,pyyaml},py{36,37}-cov41-{default,pyyaml}
+envlist = 
py{27,34,35,py,py3}-cov{3,4,41,5}-{default,pyyaml},py{36,37}-cov{41,5}-{default,pyyaml}
 
 [testenv]
 passenv = *
@@ -11,7 +11,8 @@
     pyyaml: PyYAML>=3.10
     cov3: coverage<4.0
     cov4: coverage>=4.0,<4.1
-    cov41: coverage>=4.1
+    cov41: coverage>=4.1,<5.0
+    cov5: coverage>=5.0
 commands =
     coverage run --branch --source=coveralls -m pytest tests/
     coverage report -m
@@ -30,6 +31,12 @@
 
 [testenv:coveralls41]
 deps =
-    coverage>=4.1
+    coverage>=4.1,<5.0
+commands =
+    coveralls --verbose
+
+[testenv:coveralls5]
+deps =
+    coverage>=5.0
 commands =
     coveralls --verbose


Reply via email to