Hello community,

here is the log from the commit of package python-outcome for openSUSE:Factory 
checked in at 2020-03-27 22:01:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-outcome (Old)
 and      /work/SRC/openSUSE:Factory/.python-outcome.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-outcome"

Fri Mar 27 22:01:29 2020 rev:3 rq:789042 version:1.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-outcome/python-outcome.changes    
2019-06-03 18:55:44.748420499 +0200
+++ /work/SRC/openSUSE:Factory/.python-outcome.new.3160/python-outcome.changes  
2020-03-27 22:01:33.982941742 +0100
@@ -1,0 +2,6 @@
+Fri Mar 27 13:36:27 UTC 2020 - [email protected]
+
+- version update to 1.0.1
+  * Upgrade to attrs 19.2.0.
+
+-------------------------------------------------------------------

Old:
----
  outcome-1.0.0.tar.gz

New:
----
  outcome-1.0.1.tar.gz

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

Other differences:
------------------
++++++ python-outcome.spec ++++++
--- /var/tmp/diff_new_pack.8kyUi8/_old  2020-03-27 22:01:34.842942242 +0100
+++ /var/tmp/diff_new_pack.8kyUi8/_new  2020-03-27 22:01:34.846942244 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-outcome
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-outcome
-Version:        1.0.0
+Version:        1.0.1
 Release:        0
 Summary:        Function for capturing the outcome of Python function calls
 License:        MIT OR Apache-2.0
@@ -28,10 +28,10 @@
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:       python-attrs
+Requires:       python-attrs >= 19.2.0
 BuildArch:      noarch
 # SECTION test requirements
-BuildRequires:  %{python_module attrs}
+BuildRequires:  %{python_module attrs >= 19.2.0}
 BuildRequires:  %{python_module pytest-cov}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  python3-async_generator

++++++ outcome-1.0.0.tar.gz -> outcome-1.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/outcome-1.0.0/.python-version 
new/outcome-1.0.1/.python-version
--- old/outcome-1.0.0/.python-version   2018-09-12 01:43:42.000000000 +0200
+++ new/outcome-1.0.1/.python-version   1970-01-01 01:00:00.000000000 +0100
@@ -1,5 +0,0 @@
-outcome
-3.6.4
-3.5.4
-3.4.7
-2.7.14
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/outcome-1.0.0/docs/source/history.rst 
new/outcome-1.0.1/docs/source/history.rst
--- old/outcome-1.0.0/docs/source/history.rst   2018-09-12 01:43:42.000000000 
+0200
+++ new/outcome-1.0.1/docs/source/history.rst   2019-10-17 08:37:07.000000000 
+0200
@@ -5,6 +5,12 @@
 
 .. towncrier release notes start
 
+Outcome 1.0.1 (2019-10-16)
+--------------------------
+
+Upgrade to attrs 19.2.0.
+
+
 Outcome 1.0.0 (2018-09-12)
 --------------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/outcome-1.0.0/setup.py new/outcome-1.0.1/setup.py
--- old/outcome-1.0.0/setup.py  2018-09-12 01:43:42.000000000 +0200
+++ new/outcome-1.0.1/setup.py  2019-10-17 08:37:07.000000000 +0200
@@ -32,7 +32,7 @@
     license='MIT -or- Apache License 2.0',
     packages=find_packages('src'),
     package_dir={'': 'src'},
-    install_requires=['attrs'],
+    install_requires=['attrs>=19.2.0'],
     python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
     keywords='result',
     classifiers=[
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/outcome-1.0.0/src/outcome/_sync.py 
new/outcome-1.0.1/src/outcome/_sync.py
--- old/outcome-1.0.0/src/outcome/_sync.py      2018-09-12 01:43:42.000000000 
+0200
+++ new/outcome-1.0.1/src/outcome/_sync.py      2019-10-17 08:37:07.000000000 
+0200
@@ -40,7 +40,7 @@
     hashable.
 
     """
-    _unwrapped = attr.ib(default=False, cmp=False, init=False)
+    _unwrapped = attr.ib(default=False, eq=False, init=False)
 
     def _set_unwrapped(self):
         if self._unwrapped:
@@ -54,7 +54,7 @@
         These two lines of code are equivalent::
 
            x = fn(*args)
-           x = Result.capture(fn, *args).unwrap()
+           x = outcome.capture(fn, *args).unwrap()
 
         """
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/outcome-1.0.0/src/outcome/_version.py 
new/outcome-1.0.1/src/outcome/_version.py
--- old/outcome-1.0.0/src/outcome/_version.py   2018-09-12 01:43:42.000000000 
+0200
+++ new/outcome-1.0.1/src/outcome/_version.py   2019-10-17 08:37:07.000000000 
+0200
@@ -1,4 +1,4 @@
 # coding: utf-8
 # This file is imported from __init__.py and exec'd from setup.py
 
-__version__ = "1.0.0"
+__version__ = "1.0.1"


Reply via email to