Hello community, here is the log from the commit of package python-re-assert for openSUSE:Factory checked in at 2020-11-10 13:38:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-re-assert (Old) and /work/SRC/openSUSE:Factory/.python-re-assert.new.11331 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-re-assert" Tue Nov 10 13:38:54 2020 rev:2 rq:846231 version:1.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-re-assert/python-re-assert.changes 2020-10-29 14:52:38.709252038 +0100 +++ /work/SRC/openSUSE:Factory/.python-re-assert.new.11331/python-re-assert.changes 2020-11-10 13:39:33.488461015 +0100 @@ -1,0 +2,7 @@ +Thu Oct 29 12:43:29 UTC 2020 - John Vandenberg <jay...@gmail.com> + +- Disable building on Python 2 +- Use LICENSE from PyPI sdist +- Update to v1.1.0 + +------------------------------------------------------------------- Old: ---- LICENSE re_assert-1.0.0.tar.gz New: ---- re_assert-1.1.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-re-assert.spec ++++++ --- /var/tmp/diff_new_pack.Sbzm0a/_old 2020-11-10 13:39:34.440459124 +0100 +++ /var/tmp/diff_new_pack.Sbzm0a/_new 2020-11-10 13:39:34.444459115 +0100 @@ -17,8 +17,9 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} +%define skip_python2 1 Name: python-re-assert -Version: 1.0.0 +Version: 1.1.0 Release: 0 Summary: Show Python regex match assertion failures License: MIT @@ -26,7 +27,6 @@ URL: https://github.com/asottile/re-assert Source: https://files.pythonhosted.org/packages/source/r/re_assert/re_assert-%{version}.tar.gz Source1: https://raw.githubusercontent.com/asottile/re-assert/master/tests/re_assert_test.py -Source2: https://raw.githubusercontent.com/asottile/re-assert/master/LICENSE BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros @@ -43,7 +43,7 @@ %prep %setup -q -n re_assert-%{version} -cp %{SOURCE1} %{SOURCE2} . +cp %{SOURCE1} . %build %python_build @@ -56,6 +56,7 @@ %pytest %files %{python_files} +%doc README.md %license LICENSE %{python_sitelib}/* ++++++ re_assert-1.0.0.tar.gz -> re_assert-1.1.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/re_assert-1.0.0/PKG-INFO new/re_assert-1.1.0/PKG-INFO --- old/re_assert-1.0.0/PKG-INFO 2019-09-21 22:06:44.000000000 +0200 +++ new/re_assert-1.1.0/PKG-INFO 2020-02-25 01:05:24.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: re_assert -Version: 1.0.0 +Version: 1.1.0 Summary: show where your regex match assertion failed! Home-page: https://github.com/asottile/re-assert Author: Anthony Sottile @@ -101,5 +101,6 @@ Classifier: Programming Language :: Python :: 3 :: Only Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 -Requires-Python: >=3.6 +Classifier: Programming Language :: Python :: 3.8 +Requires-Python: >=3.6.1 Description-Content-Type: text/markdown diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/re_assert-1.0.0/re_assert.egg-info/PKG-INFO new/re_assert-1.1.0/re_assert.egg-info/PKG-INFO --- old/re_assert-1.0.0/re_assert.egg-info/PKG-INFO 2019-09-21 22:06:44.000000000 +0200 +++ new/re_assert-1.1.0/re_assert.egg-info/PKG-INFO 2020-02-25 01:05:24.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: re-assert -Version: 1.0.0 +Version: 1.1.0 Summary: show where your regex match assertion failed! Home-page: https://github.com/asottile/re-assert Author: Anthony Sottile @@ -101,5 +101,6 @@ Classifier: Programming Language :: Python :: 3 :: Only Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 -Requires-Python: >=3.6 +Classifier: Programming Language :: Python :: 3.8 +Requires-Python: >=3.6.1 Description-Content-Type: text/markdown diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/re_assert-1.0.0/setup.cfg new/re_assert-1.1.0/setup.cfg --- old/re_assert-1.0.0/setup.cfg 2019-09-21 22:06:44.000000000 +0200 +++ new/re_assert-1.1.0/setup.cfg 2020-02-25 01:05:24.000000000 +0100 @@ -1,6 +1,6 @@ [metadata] name = re_assert -version = 1.0.0 +version = 1.1.0 description = show where your regex match assertion failed! long_description = file: README.md long_description_content_type = text/markdown @@ -15,12 +15,13 @@ Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 [options] py_modules = re_assert install_requires = regex -python_requires = >=3.6 +python_requires = >=3.6.1 [bdist_wheel] universal = True