Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-zipp for openSUSE:Factory 
checked in at 2022-08-30 14:48:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-zipp (Old)
 and      /work/SRC/openSUSE:Factory/.python-zipp.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-zipp"

Tue Aug 30 14:48:11 2022 rev:16 rq:999761 version:3.8.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-zipp/python-zipp.changes  2022-05-31 
15:46:47.579964746 +0200
+++ /work/SRC/openSUSE:Factory/.python-zipp.new.2083/python-zipp.changes        
2022-08-30 14:48:12.491923748 +0200
@@ -1,0 +2,16 @@
+Fri Aug 26 21:07:51 UTC 2022 - Ben Greiner <c...@bnavigator.de>
+
+- Remove deprecated setup.py hack: move to PEP517 build
+- Fix requirements
+  * Neither jaraco.itertools nor jaraco.tidelift are used outside
+    testing or documentation building
+- Ignore that upstream requires Python 3.7 or later since version
+  3.7.0
+
+-------------------------------------------------------------------
+Tue Aug 23 20:33:38 UTC 2022 - Dirk M??ller <dmuel...@suse.com>
+
+- update to 3.8.1:
+  * enrolled in tidelift
+
+-------------------------------------------------------------------

Old:
----
  zipp-3.8.0.tar.gz

New:
----
  zipp-3.8.1.tar.gz

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

Other differences:
------------------
++++++ python-zipp.spec ++++++
--- /var/tmp/diff_new_pack.Bi4iDh/_old  2022-08-30 14:48:13.103925446 +0200
+++ /var/tmp/diff_new_pack.Bi4iDh/_new  2022-08-30 14:48:13.107925458 +0200
@@ -16,9 +16,7 @@
 #
 
 
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
-%define skip_python36 1
 %global flavor @BUILD_FLAVOR@%{nil}
 %if "%{flavor}" == "test"
 %define psuffix -test
@@ -28,24 +26,25 @@
 %bcond_with test
 %endif
 Name:           python-zipp%{psuffix}
-Version:        3.8.0
+Version:        3.8.1
 Release:        0
 Summary:        Pathlib-compatible object wrapper for zip files
 License:        MIT
 Group:          Development/Languages/Python
 URL:            https://github.com/jaraco/zipp
 Source:         
https://files.pythonhosted.org/packages/source/z/zipp/zipp-%{version}.tar.gz
-BuildRequires:  %{python_module setuptools_scm >= 1.15.0}
-BuildRequires:  %{python_module setuptools}
-BuildRequires:  %{python_module toml}
+BuildRequires:  %{python_module base >= 3.6}
+BuildRequires:  %{python_module pip}
+BuildRequires:  %{python_module setuptools >= 56}
+BuildRequires:  %{python_module setuptools_scm >= 3.4.1}
+BuildRequires:  %{python_module wheel}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:       python-more-itertools
 BuildArch:      noarch
 %if %{with test}
 BuildRequires:  %{python_module jaraco.itertools}
 BuildRequires:  %{python_module more-itertools}
-BuildRequires:  %{python_module pytest >= 3.5}
+BuildRequires:  %{python_module pytest}
 %endif
 %python_subpackages
 
@@ -54,16 +53,17 @@
 
 %prep
 %setup -q -n zipp-%{version}
-echo "import setuptools; setuptools.setup()" > setup.py
-# we don't need the extensions for smoke testing
-rm -f pytest.ini
+sed -i '/addopts/ s/--doctest-modules//' pytest.ini
+# People still want this for 15.X despite Python 3.6 is not supported upstream 
anymore
+sed -i 's/python_requires = >=3.7/python_requires = >=3.6/' setup.cfg
+rm -r zipp.egg-info
 
 %build
-%python_build
+%pyproject_wheel
 
 %install
 %if !%{with test}
-%python_install
+%pyproject_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 %endif
 
@@ -80,7 +80,9 @@
 %files %{python_files}
 %doc README.rst
 %license LICENSE
-%{python_sitelib}/*
+%{python_sitelib}/zipp.py*
+%pycache_only %{python_sitelib}/__pycache__/zipp*.pyc
+%{python_sitelib}/zipp-%{version}*-info
 %endif
 
 %changelog

++++++ zipp-3.8.0.tar.gz -> zipp-3.8.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/.coveragerc new/zipp-3.8.1/.coveragerc
--- old/zipp-3.8.0/.coveragerc  2022-04-03 17:06:43.000000000 +0200
+++ new/zipp-3.8.1/.coveragerc  2022-07-12 16:20:49.000000000 +0200
@@ -2,6 +2,7 @@
 omit =
        # leading `*/` for pytest-dev/pytest-cov#456
        */.tox/*
+       */pep517-build-env-*
 
 [report]
 show_missing = True
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/.editorconfig new/zipp-3.8.1/.editorconfig
--- old/zipp-3.8.0/.editorconfig        2022-04-03 17:06:43.000000000 +0200
+++ new/zipp-3.8.1/.editorconfig        2022-07-12 16:20:49.000000000 +0200
@@ -14,3 +14,6 @@
 [*.{yml,yaml}]
 indent_style = space
 indent_size = 2
+
+[*.rst]
+indent_style = space
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/.github/FUNDING.yml 
new/zipp-3.8.1/.github/FUNDING.yml
--- old/zipp-3.8.0/.github/FUNDING.yml  1970-01-01 01:00:00.000000000 +0100
+++ new/zipp-3.8.1/.github/FUNDING.yml  2022-07-12 16:20:49.000000000 +0200
@@ -0,0 +1 @@
+tidelift: pypi/zipp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/.github/workflows/main.yml 
new/zipp-3.8.1/.github/workflows/main.yml
--- old/zipp-3.8.0/.github/workflows/main.yml   2022-04-03 17:06:43.000000000 
+0200
+++ new/zipp-3.8.1/.github/workflows/main.yml   2022-07-12 16:20:49.000000000 
+0200
@@ -7,23 +7,25 @@
     strategy:
       matrix:
         python:
-        - 3.7
-        - 3.9
-        - "3.10"
+        # Build on pre-releases until stable, then stable releases.
+        # actions/setup-python#213
+        - ~3.7.0-0
+        - ~3.10.0-0
+        - ~3.11.0-0
         platform:
         - ubuntu-latest
         - macos-latest
         - windows-latest
     runs-on: ${{ matrix.platform }}
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
         with:
           # fetch all branches and tags (to get tags for versioning)
           # ref actions/checkout#448
           fetch-depth: 0
 
       - name: Setup Python
-        uses: actions/setup-python@v2
+        uses: actions/setup-python@v3
         with:
           python-version: ${{ matrix.python }}
       - name: Install tox
@@ -32,15 +34,30 @@
       - name: Run tests
         run: tox
 
+  check:  # This job does nothing and is only used for the branch protection
+    if: always()
+
+    needs:
+    - test
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - name: Decide whether the needed jobs succeeded or failed
+      uses: re-actors/alls-green@release/v1
+      with:
+        jobs: ${{ toJSON(needs) }}
+
   release:
-    needs: test
+    needs:
+    - check
     if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
     runs-on: ubuntu-latest
 
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
       - name: Setup Python
-        uses: actions/setup-python@v2
+        uses: actions/setup-python@v3
         with:
           python-version: "3.10"
       - name: Install tox
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/.pre-commit-config.yaml 
new/zipp-3.8.1/.pre-commit-config.yaml
--- old/zipp-3.8.0/.pre-commit-config.yaml      2022-04-03 17:06:43.000000000 
+0200
+++ new/zipp-3.8.1/.pre-commit-config.yaml      2022-07-12 16:20:49.000000000 
+0200
@@ -1,5 +1,5 @@
 repos:
 - repo: https://github.com/psf/black
-  rev: 22.1.0
+  rev: 22.6.0
   hooks:
   - id: black
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/CHANGES.rst new/zipp-3.8.1/CHANGES.rst
--- old/zipp-3.8.0/CHANGES.rst  2022-04-03 17:06:43.000000000 +0200
+++ new/zipp-3.8.1/CHANGES.rst  2022-07-12 16:20:49.000000000 +0200
@@ -1,3 +1,10 @@
+v3.8.1
+======
+
+Refreshed packaging.
+
+Enrolled with Tidelift.
+
 v3.8.0
 ======
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/PKG-INFO new/zipp-3.8.1/PKG-INFO
--- old/zipp-3.8.0/PKG-INFO     2022-04-03 17:07:12.658312300 +0200
+++ new/zipp-3.8.1/PKG-INFO     2022-07-12 16:21:10.817893000 +0200
@@ -1,12 +1,10 @@
 Metadata-Version: 2.1
 Name: zipp
-Version: 3.8.0
+Version: 3.8.1
 Summary: Backport of pathlib-compatible object wrapper for zip files
 Home-page: https://github.com/jaraco/zipp
 Author: Jason R. Coombs
 Author-email: jar...@jaraco.com
-License: UNKNOWN
-Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: MIT License
@@ -39,6 +37,9 @@
 .. image:: https://img.shields.io/badge/skeleton-2022-informational
    :target: https://blog.jaraco.com/skeleton
 
+.. image:: https://tidelift.com/badges/package/pypi/zipp
+   :target: 
https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=readme
+
 
 A pathlib-compatible Zipfile object wrapper. Official backport of the standard 
library
 `Path object <https://docs.python.org/3.8/library/zipfile.html#path-objects>`_.
@@ -69,4 +70,18 @@
 
 Use ``zipp.Path`` in place of ``zipfile.Path`` on any Python.
 
+For Enterprise
+==============
+
+Available as part of the Tidelift Subscription.
+
+This project and the maintainers of thousands of other packages are working 
with Tidelift to deliver one enterprise subscription that covers all of the 
open source you use.
+
+`Learn more 
<https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=referral&utm_campaign=github>`_.
+
+Security Contact
+================
 
+To report a security vulnerability, please use the
+`Tidelift security contact <https://tidelift.com/security>`_.
+Tidelift will coordinate the fix and disclosure.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/README.rst new/zipp-3.8.1/README.rst
--- old/zipp-3.8.0/README.rst   2022-04-03 17:06:43.000000000 +0200
+++ new/zipp-3.8.1/README.rst   2022-07-12 16:20:49.000000000 +0200
@@ -20,6 +20,9 @@
 .. image:: https://img.shields.io/badge/skeleton-2022-informational
    :target: https://blog.jaraco.com/skeleton
 
+.. image:: https://tidelift.com/badges/package/pypi/zipp
+   :target: 
https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=readme
+
 
 A pathlib-compatible Zipfile object wrapper. Official backport of the standard 
library
 `Path object <https://docs.python.org/3.8/library/zipfile.html#path-objects>`_.
@@ -49,3 +52,19 @@
 =====
 
 Use ``zipp.Path`` in place of ``zipfile.Path`` on any Python.
+
+For Enterprise
+==============
+
+Available as part of the Tidelift Subscription.
+
+This project and the maintainers of thousands of other packages are working 
with Tidelift to deliver one enterprise subscription that covers all of the 
open source you use.
+
+`Learn more 
<https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=referral&utm_campaign=github>`_.
+
+Security Contact
+================
+
+To report a security vulnerability, please use the
+`Tidelift security contact <https://tidelift.com/security>`_.
+Tidelift will coordinate the fix and disclosure.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/docs/conf.py new/zipp-3.8.1/docs/conf.py
--- old/zipp-3.8.0/docs/conf.py 2022-04-03 17:06:43.000000000 +0200
+++ new/zipp-3.8.1/docs/conf.py 2022-07-12 16:20:49.000000000 +0200
@@ -19,7 +19,7 @@
             ),
             dict(
                 pattern=r'PEP[- ](?P<pep_number>\d+)',
-                url='https://www.python.org/dev/peps/pep-{pep_number:0>4}/',
+                url='https://peps.python.org/pep-{pep_number:0>4}/',
             ),
             dict(
                 pattern=r'(Python #|bpo-)(?P<python>\d+)',
@@ -38,3 +38,5 @@
 intersphinx_mapping = {
     'python': ('https://docs.python.org/3', None),
 }
+
+extensions += ['jaraco.tidelift']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/docs/index.rst 
new/zipp-3.8.1/docs/index.rst
--- old/zipp-3.8.0/docs/index.rst       2022-04-03 17:06:43.000000000 +0200
+++ new/zipp-3.8.1/docs/index.rst       2022-07-12 16:20:49.000000000 +0200
@@ -7,6 +7,8 @@
    history
 
 
+.. tidelift-referral-banner::
+
 .. automodule:: zipp
     :members:
     :undoc-members:
@@ -19,4 +21,3 @@
 * :ref:`genindex`
 * :ref:`modindex`
 * :ref:`search`
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/pyproject.toml 
new/zipp-3.8.1/pyproject.toml
--- old/zipp-3.8.0/pyproject.toml       2022-04-03 17:06:43.000000000 +0200
+++ new/zipp-3.8.1/pyproject.toml       2022-07-12 16:20:49.000000000 +0200
@@ -7,14 +7,14 @@
 
 [tool.setuptools_scm]
 
-[pytest.enabler.black]
+[tool.pytest-enabler.black]
 addopts = "--black"
 
-[pytest.enabler.mypy]
+[tool.pytest-enabler.mypy]
 addopts = "--mypy"
 
-[pytest.enabler.flake8]
+[tool.pytest-enabler.flake8]
 addopts = "--flake8"
 
-[pytest.enabler.cov]
+[tool.pytest-enabler.cov]
 addopts = "--cov"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/setup.cfg new/zipp-3.8.1/setup.cfg
--- old/zipp-3.8.0/setup.cfg    2022-04-03 17:07:12.658312300 +0200
+++ new/zipp-3.8.1/setup.cfg    2022-07-12 16:21:10.821893200 +0200
@@ -36,7 +36,7 @@
        pytest-cov
        pytest-mypy >= 0.9.1; \
        python_implementation != "PyPy"
-       pytest-enabler >= 1.0.1
+       pytest-enabler >= 1.3
        
        jaraco.itertools
        func-timeout
@@ -44,6 +44,7 @@
        sphinx
        jaraco.packaging >= 9
        rst.linker >= 1.9
+       jaraco.tidelift >= 1.4
 
 [options.entry_points]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/zipp.egg-info/PKG-INFO 
new/zipp-3.8.1/zipp.egg-info/PKG-INFO
--- old/zipp-3.8.0/zipp.egg-info/PKG-INFO       2022-04-03 17:07:11.000000000 
+0200
+++ new/zipp-3.8.1/zipp.egg-info/PKG-INFO       2022-07-12 16:21:10.000000000 
+0200
@@ -1,12 +1,10 @@
 Metadata-Version: 2.1
 Name: zipp
-Version: 3.8.0
+Version: 3.8.1
 Summary: Backport of pathlib-compatible object wrapper for zip files
 Home-page: https://github.com/jaraco/zipp
 Author: Jason R. Coombs
 Author-email: jar...@jaraco.com
-License: UNKNOWN
-Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: MIT License
@@ -39,6 +37,9 @@
 .. image:: https://img.shields.io/badge/skeleton-2022-informational
    :target: https://blog.jaraco.com/skeleton
 
+.. image:: https://tidelift.com/badges/package/pypi/zipp
+   :target: 
https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=readme
+
 
 A pathlib-compatible Zipfile object wrapper. Official backport of the standard 
library
 `Path object <https://docs.python.org/3.8/library/zipfile.html#path-objects>`_.
@@ -69,4 +70,18 @@
 
 Use ``zipp.Path`` in place of ``zipfile.Path`` on any Python.
 
+For Enterprise
+==============
+
+Available as part of the Tidelift Subscription.
+
+This project and the maintainers of thousands of other packages are working 
with Tidelift to deliver one enterprise subscription that covers all of the 
open source you use.
+
+`Learn more 
<https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=referral&utm_campaign=github>`_.
+
+Security Contact
+================
 
+To report a security vulnerability, please use the
+`Tidelift security contact <https://tidelift.com/security>`_.
+Tidelift will coordinate the fix and disclosure.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/zipp.egg-info/SOURCES.txt 
new/zipp-3.8.1/zipp.egg-info/SOURCES.txt
--- old/zipp-3.8.0/zipp.egg-info/SOURCES.txt    2022-04-03 17:07:12.000000000 
+0200
+++ new/zipp-3.8.1/zipp.egg-info/SOURCES.txt    2022-07-12 16:21:10.000000000 
+0200
@@ -14,6 +14,7 @@
 test_zipp.py
 tox.ini
 zipp.py
+.github/FUNDING.yml
 .github/dependabot.yml
 .github/workflows/main.yml
 docs/conf.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zipp-3.8.0/zipp.egg-info/requires.txt 
new/zipp-3.8.1/zipp.egg-info/requires.txt
--- old/zipp-3.8.0/zipp.egg-info/requires.txt   2022-04-03 17:07:12.000000000 
+0200
+++ new/zipp-3.8.1/zipp.egg-info/requires.txt   2022-07-12 16:21:10.000000000 
+0200
@@ -3,13 +3,14 @@
 sphinx
 jaraco.packaging>=9
 rst.linker>=1.9
+jaraco.tidelift>=1.4
 
 [testing]
 pytest>=6
 pytest-checkdocs>=2.4
 pytest-flake8
 pytest-cov
-pytest-enabler>=1.0.1
+pytest-enabler>=1.3
 jaraco.itertools
 func-timeout
 

Reply via email to