Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pip-run for openSUSE:Factory checked in at 2022-12-08 16:50:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pip-run (Old) and /work/SRC/openSUSE:Factory/.python-pip-run.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pip-run" Thu Dec 8 16:50:07 2022 rev:3 rq:1040815 version:8.8.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pip-run/python-pip-run.changes 2022-08-06 22:08:00.638630832 +0200 +++ /work/SRC/openSUSE:Factory/.python-pip-run.new.1835/python-pip-run.changes 2022-12-08 16:50:13.483188059 +0100 @@ -1,0 +2,7 @@ +Tue Dec 6 04:22:58 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com> + +- Update to version v8.8.2 + * Packaging refresh. + * Merge https://github.com/jaraco/skeleton + +------------------------------------------------------------------- Old: ---- pip-run-8.8.1.tar.gz New: ---- pip-run-8.8.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pip-run.spec ++++++ --- /var/tmp/diff_new_pack.l74jrt/_old 2022-12-08 16:50:14.007190739 +0100 +++ /var/tmp/diff_new_pack.l74jrt/_new 2022-12-08 16:50:14.011190760 +0100 @@ -28,7 +28,7 @@ %bcond_with ringdisabled Name: python-pip-run%{psuffix} -Version: 8.8.1 +Version: 8.8.2 Release: 0 Summary: Install packages and run Python with them License: MIT ++++++ pip-run-8.8.1.tar.gz -> pip-run-8.8.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/.github/workflows/main.yml new/pip-run-8.8.2/.github/workflows/main.yml --- old/pip-run-8.8.1/.github/workflows/main.yml 2022-07-06 02:51:06.000000000 +0200 +++ new/pip-run-8.8.2/.github/workflows/main.yml 2022-11-21 02:17:26.000000000 +0100 @@ -2,27 +2,67 @@ on: [push, pull_request] +env: + # Environment variables to support color support (jaraco/skeleton#66): + # Request colored output from CLI tools supporting it. Different tools + # interpret the value differently. For some, just being set is sufficient. + # For others, it must be a non-zero integer. For yet others, being set + # to a non-empty value is sufficient. + FORCE_COLOR: -106 + # MyPy's color enforcement (must be a non-zero number) + MYPY_FORCE_COLOR: -42 + # Recognized by the `py` package, dependency of `pytest` (must be "1") + PY_COLORS: 1 + # Make tox-wrapped tools see color requests + TOX_TESTENV_PASSENV: >- + FORCE_COLOR + MYPY_FORCE_COLOR + NO_COLOR + PY_COLORS + PYTEST_THEME + PYTEST_THEME_MODE + + # Suppress noisy pip warnings + PIP_DISABLE_PIP_VERSION_CHECK: 'true' + PIP_NO_PYTHON_VERSION_WARNING: 'true' + PIP_NO_WARN_SCRIPT_LOCATION: 'true' + + # Disable the spinner, noise in GHA; TODO(webknjaz): Fix this upstream + # Must be "1". + TOX_PARALLEL_NO_SPINNER: 1 + + jobs: test: strategy: matrix: python: - # 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 + - "3.7" + - "3.11" + - "3.12" + # Workaround for actions/setup-python#508 + dev: + - -dev platform: - ubuntu-latest - macos-latest - windows-latest + include: + - python: "3.8" + platform: ubuntu-latest + - python: "3.9" + platform: ubuntu-latest + - python: "3.10" + platform: ubuntu-latest + - python: pypy3.9 + platform: ubuntu-latest runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v3 - name: Setup Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python }} + python-version: ${{ matrix.python }}${{ matrix.dev }} - name: Install tox run: | python -m pip install tox @@ -52,9 +92,9 @@ steps: - uses: actions/checkout@v3 - name: Setup Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: 3.11-dev - name: Install tox run: | python -m pip install tox diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/.pre-commit-config.yaml new/pip-run-8.8.2/.pre-commit-config.yaml --- old/pip-run-8.8.1/.pre-commit-config.yaml 2022-07-06 02:51:06.000000000 +0200 +++ new/pip-run-8.8.2/.pre-commit-config.yaml 2022-11-21 02:17:26.000000000 +0100 @@ -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/pip-run-8.8.1/.readthedocs.yaml new/pip-run-8.8.2/.readthedocs.yaml --- old/pip-run-8.8.1/.readthedocs.yaml 1970-01-01 01:00:00.000000000 +0100 +++ new/pip-run-8.8.2/.readthedocs.yaml 2022-11-21 02:17:26.000000000 +0100 @@ -0,0 +1,13 @@ +version: 2 +python: + install: + - path: . + extra_requirements: + - docs + +# workaround for readthedocs/readthedocs.org#9623 +build: + # workaround for readthedocs/readthedocs.org#9635 + os: ubuntu-22.04 + tools: + python: "3" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/.readthedocs.yml new/pip-run-8.8.2/.readthedocs.yml --- old/pip-run-8.8.1/.readthedocs.yml 2022-07-06 02:51:06.000000000 +0200 +++ new/pip-run-8.8.2/.readthedocs.yml 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +0,0 @@ -version: 2 -python: - install: - - path: . - extra_requirements: - - docs diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/CHANGES.rst new/pip-run-8.8.2/CHANGES.rst --- old/pip-run-8.8.1/CHANGES.rst 2022-07-06 02:51:06.000000000 +0200 +++ new/pip-run-8.8.2/CHANGES.rst 2022-11-21 02:17:26.000000000 +0100 @@ -1,3 +1,8 @@ +v8.8.2 +====== + +Packaging refresh. + v8.8.1 ====== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/PKG-INFO new/pip-run-8.8.2/PKG-INFO --- old/pip-run-8.8.1/PKG-INFO 2022-07-06 02:51:32.447447300 +0200 +++ new/pip-run-8.8.2/PKG-INFO 2022-11-21 02:17:48.316935000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pip-run -Version: 8.8.1 +Version: 8.8.2 Summary: install packages and run Python with them Home-page: https://github.com/jaraco/pip-run Author: Jason R. Coombs @@ -16,12 +16,9 @@ License-File: LICENSE .. image:: https://img.shields.io/pypi/v/pip-run.svg - :target: `PyPI link`_ + :target: https://pypi.org/project/pip-run .. image:: https://img.shields.io/pypi/pyversions/pip-run.svg - :target: `PyPI link`_ - -.. _PyPI link: https://pypi.org/project/pip-run .. image:: https://github.com/jaraco/pip-run/workflows/tests/badge.svg :target: https://github.com/jaraco/pip-run/actions?query=workflow%3A%22tests%22 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/README.rst new/pip-run-8.8.2/README.rst --- old/pip-run-8.8.1/README.rst 2022-07-06 02:51:06.000000000 +0200 +++ new/pip-run-8.8.2/README.rst 2022-11-21 02:17:26.000000000 +0100 @@ -1,10 +1,7 @@ .. image:: https://img.shields.io/pypi/v/pip-run.svg - :target: `PyPI link`_ + :target: https://pypi.org/project/pip-run .. image:: https://img.shields.io/pypi/pyversions/pip-run.svg - :target: `PyPI link`_ - -.. _PyPI link: https://pypi.org/project/pip-run .. image:: https://github.com/jaraco/pip-run/workflows/tests/badge.svg :target: https://github.com/jaraco/pip-run/actions?query=workflow%3A%22tests%22 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/docs/_templates/tidelift-sidebar.html new/pip-run-8.8.2/docs/_templates/tidelift-sidebar.html --- old/pip-run-8.8.1/docs/_templates/tidelift-sidebar.html 2022-07-06 02:51:06.000000000 +0200 +++ new/pip-run-8.8.2/docs/_templates/tidelift-sidebar.html 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +0,0 @@ -<h3 class="donation">For Enterprise</h3> - -<p> -Professionally-supported {{ project }} is available with the -<a href="https://tidelift.com/subscription/pkg/pypi-{{ project }}?utm_source=pypi-{{ project }}&utm_medium=referral">Tidelift Subscription</a>. -</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/docs/conf.py new/pip-run-8.8.2/docs/conf.py --- old/pip-run-8.8.1/docs/conf.py 2022-07-06 02:51:06.000000000 +0200 +++ new/pip-run-8.8.2/docs/conf.py 2022-11-21 02:17:26.000000000 +0100 @@ -1,10 +1,16 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -extensions = ['sphinx.ext.autodoc', 'jaraco.packaging.sphinx', 'rst.linker'] +extensions = [ + 'sphinx.ext.autodoc', + 'jaraco.packaging.sphinx', +] master_doc = "index" +html_theme = "furo" +# Link dates and other references in the changelog +extensions += ['rst.linker'] link_files = { '../CHANGES.rst': dict( using=dict(GH='https://github.com'), @@ -29,7 +35,7 @@ ) } -# Be strict about any broken references: +# Be strict about any broken references nitpicky = True nitpick_ignore = [ @@ -43,7 +49,7 @@ 'python': ('https://docs.python.org/3', None), } -# Custom sidebar templates, maps document names to template names. -html_theme = 'alabaster' -templates_path = ['_templates'] -html_sidebars = {'index': ['tidelift-sidebar.html']} +# Preserve authored syntax for defaults +autodoc_preserve_defaults = True + +extensions += ['jaraco.tidelift'] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/docs/index.rst new/pip-run-8.8.2/docs/index.rst --- old/pip-run-8.8.1/docs/index.rst 2022-07-06 02:51:06.000000000 +0200 +++ new/pip-run-8.8.2/docs/index.rst 2022-11-21 02:17:26.000000000 +0100 @@ -6,6 +6,7 @@ history +.. tidelift-referral-banner:: .. automodule:: pip_run :members: @@ -39,4 +40,3 @@ * :ref:`genindex` * :ref:`modindex` * :ref:`search` - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/mypy.ini new/pip-run-8.8.2/mypy.ini --- old/pip-run-8.8.1/mypy.ini 2022-07-06 02:51:06.000000000 +0200 +++ new/pip-run-8.8.2/mypy.ini 2022-11-21 02:17:26.000000000 +0100 @@ -1,2 +1,5 @@ [mypy] ignore_missing_imports = True +# required to support namespace packages +# https://github.com/python/mypy/issues/14057 +explicit_package_bases = True diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/pip_run.egg-info/PKG-INFO new/pip-run-8.8.2/pip_run.egg-info/PKG-INFO --- old/pip-run-8.8.1/pip_run.egg-info/PKG-INFO 2022-07-06 02:51:32.000000000 +0200 +++ new/pip-run-8.8.2/pip_run.egg-info/PKG-INFO 2022-11-21 02:17:48.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pip-run -Version: 8.8.1 +Version: 8.8.2 Summary: install packages and run Python with them Home-page: https://github.com/jaraco/pip-run Author: Jason R. Coombs @@ -16,12 +16,9 @@ License-File: LICENSE .. image:: https://img.shields.io/pypi/v/pip-run.svg - :target: `PyPI link`_ + :target: https://pypi.org/project/pip-run .. image:: https://img.shields.io/pypi/pyversions/pip-run.svg - :target: `PyPI link`_ - -.. _PyPI link: https://pypi.org/project/pip-run .. image:: https://github.com/jaraco/pip-run/workflows/tests/badge.svg :target: https://github.com/jaraco/pip-run/actions?query=workflow%3A%22tests%22 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/pip_run.egg-info/SOURCES.txt new/pip-run-8.8.2/pip_run.egg-info/SOURCES.txt --- old/pip-run-8.8.1/pip_run.egg-info/SOURCES.txt 2022-07-06 02:51:32.000000000 +0200 +++ new/pip-run-8.8.2/pip_run.egg-info/SOURCES.txt 2022-11-21 02:17:48.000000000 +0100 @@ -2,7 +2,7 @@ .editorconfig .flake8 .pre-commit-config.yaml -.readthedocs.yml +.readthedocs.yaml CHANGES.rst LICENSE README.rst @@ -20,7 +20,6 @@ docs/cowsay.svg docs/history.rst docs/index.rst -docs/_templates/tidelift-sidebar.html examples/plotter.ipynb examples/test-mongodb-covered-query.py pip_run/__init__.py diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/pip_run.egg-info/requires.txt new/pip-run-8.8.2/pip_run.egg-info/requires.txt --- old/pip-run-8.8.1/pip_run.egg-info/requires.txt 2022-07-06 02:51:32.000000000 +0200 +++ new/pip-run-8.8.2/pip_run.egg-info/requires.txt 2022-11-21 02:17:48.000000000 +0100 @@ -7,14 +7,16 @@ importlib_metadata [docs] -sphinx +sphinx>=3.5 jaraco.packaging>=9 rst.linker>=1.9 +furo +jaraco.tidelift>=1.4 [testing] pytest>=6 pytest-checkdocs>=2.4 -pytest-flake8 +flake8<5 pytest-cov pytest-enabler>=1.3 nbformat @@ -23,3 +25,6 @@ [testing:platform_python_implementation != "PyPy"] pytest-black>=0.3.7 pytest-mypy>=0.9.1 + +[testing:python_version < "3.12"] +pytest-flake8 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-run-8.8.1/setup.cfg new/pip-run-8.8.2/setup.cfg --- old/pip-run-8.8.1/setup.cfg 2022-07-06 02:51:32.447447300 +0200 +++ new/pip-run-8.8.2/setup.cfg 2022-11-21 02:17:48.316935000 +0100 @@ -36,7 +36,9 @@ testing = pytest >= 6 pytest-checkdocs >= 2.4 - pytest-flake8 + pytest-flake8; \ + python_version < "3.12" + flake8 < 5 pytest-black >= 0.3.7; \ python_implementation != "PyPy" pytest-cov @@ -47,9 +49,11 @@ nbformat pygments docs = - sphinx + sphinx >= 3.5 jaraco.packaging >= 9 rst.linker >= 1.9 + furo + jaraco.tidelift >= 1.4 [options.entry_points] console_scripts =