Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-sphinx-autodoc-typehints for openSUSE:Factory checked in at 2022-08-08 08:44:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sphinx-autodoc-typehints (Old) and /work/SRC/openSUSE:Factory/.python-sphinx-autodoc-typehints.new.1521 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinx-autodoc-typehints" Mon Aug 8 08:44:48 2022 rev:12 rq:989341 version:1.18.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-sphinx-autodoc-typehints/python-sphinx-autodoc-typehints.changes 2022-06-08 14:24:18.788457168 +0200 +++ /work/SRC/openSUSE:Factory/.python-sphinx-autodoc-typehints.new.1521/python-sphinx-autodoc-typehints.changes 2022-08-08 08:44:49.710388108 +0200 @@ -1,0 +2,7 @@ +Thu Jul 14 16:34:24 UTC 2022 - Ben Greiner <c...@bnavigator.de> + +- Update to 1.18.3 + * Fix for new nptyping by @gaborbernat in #235 +- Remove requirement on old extra package pathlib + +------------------------------------------------------------------- Old: ---- sphinx_autodoc_typehints-1.18.2.tar.gz New: ---- sphinx_autodoc_typehints-1.18.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sphinx-autodoc-typehints.spec ++++++ --- /var/tmp/diff_new_pack.Vs4rPm/_old 2022-08-08 08:44:50.146389390 +0200 +++ /var/tmp/diff_new_pack.Vs4rPm/_new 2022-08-08 08:44:50.146389390 +0200 @@ -16,9 +16,8 @@ # -%{?!python_module:%define python_module() python-%{**} python3-%{**}} +%{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 -%define skip_python36 1 %define modname sphinx_autodoc_typehints %global flavor @BUILD_FLAVOR@%{nil} %if "%{flavor}" == "test" @@ -29,7 +28,7 @@ %bcond_with test %endif Name: python-sphinx-autodoc-typehints%{psuffix} -Version: 1.18.2 +Version: 1.18.3 Release: 0 Summary: Type hints (PEP 484) support for the Sphinx autodoc extension License: MIT @@ -52,7 +51,6 @@ BuildRequires: %{python_module Sphinx >= 1.7} BuildRequires: %{python_module doc} BuildRequires: %{python_module nptyping} -BuildRequires: %{python_module pathlib} BuildRequires: %{python_module pytest} BuildRequires: %{python_module sphobjinv} BuildRequires: %{python_module typing_extensions} ++++++ sphinx_autodoc_typehints-1.18.2.tar.gz -> sphinx_autodoc_typehints-1.18.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx_autodoc_typehints-1.18.2/CHANGELOG.md new/sphinx_autodoc_typehints-1.18.3/CHANGELOG.md --- old/sphinx_autodoc_typehints-1.18.2/CHANGELOG.md 2022-06-03 11:43:34.000000000 +0200 +++ new/sphinx_autodoc_typehints-1.18.3/CHANGELOG.md 2022-06-10 10:41:55.000000000 +0200 @@ -1,5 +1,9 @@ # Changelog +## 1.18.3 + +- Support and require `nptyping>=2.1.2` + ## 1.18.2 - Support and require `nptyping>=2.1.1` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx_autodoc_typehints-1.18.2/PKG-INFO new/sphinx_autodoc_typehints-1.18.3/PKG-INFO --- old/sphinx_autodoc_typehints-1.18.2/PKG-INFO 2022-06-03 11:43:43.826064600 +0200 +++ new/sphinx_autodoc_typehints-1.18.3/PKG-INFO 2022-06-10 10:42:06.141754400 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: sphinx_autodoc_typehints -Version: 1.18.2 +Version: 1.18.3 Summary: Type hints (PEP 484) support for the Sphinx autodoc extension Home-page: https://github.com/tox-dev/sphinx-autodoc-typehints Download-URL: https://github.com/tox-dev/sphinx-autodoc-typehints/archive/main.zip diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx_autodoc_typehints-1.18.2/setup.cfg new/sphinx_autodoc_typehints-1.18.3/setup.cfg --- old/sphinx_autodoc_typehints-1.18.2/setup.cfg 2022-06-03 11:43:43.830064500 +0200 +++ new/sphinx_autodoc_typehints-1.18.3/setup.cfg 2022-06-10 10:42:06.141754400 +0200 @@ -43,7 +43,7 @@ covdefaults>=2.2 coverage>=6.3 diff-cover>=6.4 - nptyping>=2.1.1 + nptyping>=2.1.2 pytest>=7.1 pytest-cov>=3 sphobjinv>=2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx_autodoc_typehints-1.18.2/src/sphinx_autodoc_typehints/version.py new/sphinx_autodoc_typehints-1.18.3/src/sphinx_autodoc_typehints/version.py --- old/sphinx_autodoc_typehints-1.18.2/src/sphinx_autodoc_typehints/version.py 2022-06-03 11:43:42.000000000 +0200 +++ new/sphinx_autodoc_typehints-1.18.3/src/sphinx_autodoc_typehints/version.py 2022-06-10 10:42:05.000000000 +0200 @@ -1,5 +1,5 @@ # coding: utf-8 # file generated by setuptools_scm # don't change, don't track in version control -version = '1.18.2' -version_tuple = (1, 18, 2) +version = '1.18.3' +version_tuple = (1, 18, 3) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx_autodoc_typehints-1.18.2/src/sphinx_autodoc_typehints.egg-info/PKG-INFO new/sphinx_autodoc_typehints-1.18.3/src/sphinx_autodoc_typehints.egg-info/PKG-INFO --- old/sphinx_autodoc_typehints-1.18.2/src/sphinx_autodoc_typehints.egg-info/PKG-INFO 2022-06-03 11:43:43.000000000 +0200 +++ new/sphinx_autodoc_typehints-1.18.3/src/sphinx_autodoc_typehints.egg-info/PKG-INFO 2022-06-10 10:42:05.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: sphinx-autodoc-typehints -Version: 1.18.2 +Version: 1.18.3 Summary: Type hints (PEP 484) support for the Sphinx autodoc extension Home-page: https://github.com/tox-dev/sphinx-autodoc-typehints Download-URL: https://github.com/tox-dev/sphinx-autodoc-typehints/archive/main.zip diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx_autodoc_typehints-1.18.2/src/sphinx_autodoc_typehints.egg-info/requires.txt new/sphinx_autodoc_typehints-1.18.3/src/sphinx_autodoc_typehints.egg-info/requires.txt --- old/sphinx_autodoc_typehints-1.18.2/src/sphinx_autodoc_typehints.egg-info/requires.txt 2022-06-03 11:43:43.000000000 +0200 +++ new/sphinx_autodoc_typehints-1.18.3/src/sphinx_autodoc_typehints.egg-info/requires.txt 2022-06-10 10:42:05.000000000 +0200 @@ -4,7 +4,7 @@ covdefaults>=2.2 coverage>=6.3 diff-cover>=6.4 -nptyping>=2.1.1 +nptyping>=2.1.2 pytest>=7.1 pytest-cov>=3 sphobjinv>=2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx_autodoc_typehints-1.18.2/tests/test_sphinx_autodoc_typehints.py new/sphinx_autodoc_typehints-1.18.3/tests/test_sphinx_autodoc_typehints.py --- old/sphinx_autodoc_typehints-1.18.2/tests/test_sphinx_autodoc_typehints.py 2022-06-03 11:43:34.000000000 +0200 +++ new/sphinx_autodoc_typehints-1.18.3/tests/test_sphinx_autodoc_typehints.py 2022-06-10 10:41:55.000000000 +0200 @@ -241,39 +241,39 @@ # Internal tuple with following additional type cannot be flattened (specific to nptyping?) # These cases will fail if nptyping restructures its internal module hierarchy ( - nptyping.NDArray[nptyping.Shape["*"], nptyping.Float], # type: ignore # nptyping/issues/77 + nptyping.NDArray[nptyping.Shape["*"], nptyping.Float], ( ":py:class:`~nptyping.base_meta_classes.NDArray`\\[:py:class:`~nptyping.base_meta_classes.Shape`\\[*], " ":py:class:`~numpy.float64`]" ), ), ( - nptyping.NDArray[nptyping.Shape["64"], nptyping.Float], # type: ignore # nptyping/issues/77 + nptyping.NDArray[nptyping.Shape["64"], nptyping.Float], ( ":py:class:`~nptyping.base_meta_classes.NDArray`\\[:py:class:`~nptyping.base_meta_classes.Shape`\\[64]," " :py:class:`~numpy.float64`]" ), ), ( - nptyping.NDArray[nptyping.Shape["*, *"], nptyping.Float], # type: ignore # nptyping/issues/77 + nptyping.NDArray[nptyping.Shape["*, *"], nptyping.Float], ( ":py:class:`~nptyping.base_meta_classes.NDArray`\\[:py:class:`~nptyping.base_meta_classes.Shape`\\[*, " "*], :py:class:`~numpy.float64`]" ), ), ( - nptyping.NDArray[nptyping.Shape["*, ..."], nptyping.Float], # type: ignore # nptyping/issues/77 + nptyping.NDArray[nptyping.Shape["*, ..."], nptyping.Float], (":py:class:`~nptyping.base_meta_classes.NDArray`\\[:py:data:`~typing.Any`, :py:class:`~numpy.float64`]"), ), ( - nptyping.NDArray[nptyping.Shape["*, 3"], nptyping.Float], # type: ignore # nptyping/issues/77 + nptyping.NDArray[nptyping.Shape["*, 3"], nptyping.Float], ( ":py:class:`~nptyping.base_meta_classes.NDArray`\\[:py:class:`~nptyping.base_meta_classes.Shape`\\[*, 3" "], :py:class:`~numpy.float64`]" ), ), ( - nptyping.NDArray[nptyping.Shape["3, ..."], nptyping.Float], # type: ignore # nptyping/issues/77 + nptyping.NDArray[nptyping.Shape["3, ..."], nptyping.Float], ( ":py:class:`~nptyping.base_meta_classes.NDArray`\\[:py:class:`~nptyping.base_meta_classes.Shape`\\[3, " "...], :py:class:`~numpy.float64`]" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinx_autodoc_typehints-1.18.2/tox.ini new/sphinx_autodoc_typehints-1.18.3/tox.ini --- old/sphinx_autodoc_typehints-1.18.2/tox.ini 2022-06-03 11:43:34.000000000 +0200 +++ new/sphinx_autodoc_typehints-1.18.3/tox.ini 2022-06-10 10:41:55.000000000 +0200 @@ -45,7 +45,7 @@ setenv = {tty:MYPY_FORCE_COLOR = 1} deps = - mypy==0.960 + mypy==0.961 types-docutils commands = mypy --python-version 3.10 src