- update to 3.2.1:

* #8095: napoleon: Add :confval:`napoleon_preprocess_types` to enable the type
    preprocessor for numpy style docstrings
  * #8114: C and C++, parse function attributes after parameters and qualifiers.
  * #8074: napoleon: Crashes during processing C-ext module
  * #8088: napoleon: "Inline literal start-string without end-string" warning in
    Numpy style Parameters section
  * #8084: autodoc: KeyError is raised on documenting an attribute of the broken
    class
  * #8091: autodoc: AttributeError is raised on documenting an attribute on Python
    3.5.2
  * #8099: autodoc: NameError is raised when target code uses ``TYPE_CHECKING``
  * C++, fix parsing of template template paramters, broken by the fix of #7944

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Sphinx?expand=0&rev=160
This commit is contained in:
Dirk Mueller 2020-08-18 14:44:31 +00:00 committed by Git OBS Bridge
parent 9695b37e32
commit cf25008762
6 changed files with 37 additions and 20 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cf2d5bc3c6c930ab0a1fbef3ad8a82994b1bf4ae923f8098a05c7e5516f07177
size 5970521

View File

@ -1,16 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEEihG3ml0NdJpm8KAwECwsF0mNa54FAl8ua/4ACgkQECwsF0mN
a57VLw/7BMdfLyb5q65V2AdiQ86DKsl17/t0YREhubL83JJqnHTIfrrkTRGaxZQH
OOAIPUmf31aFvBMdyZKf/Ac9y2Ys0+AWmPnUMTPbaDS7dVGApaIgrfmk/Z0ng4hL
7Li2NQUhW6zB2irVIeyFEnum67n9CjFvzD0qFtLQ6CUr+ngE7M42oNSYCgbFzcbe
0krGXNWSwACtr2Oi07a+VOySyaNahpMi9U35fsIa9FsAtRj/gJyWLqYfXGFk5QsX
XzDNi1qyP7TOzx5gEJVSToOh/hiADHB9FOkU6T8gW70Ey2aE2m+KYVX0zkr2qV5h
pOdzjnXRtPa7lngnTrEyERG7dZ/dd2GTqopofrFuwgBnS5SY7AirRO0iutuz0xJT
YXwufkj+CzoqiBgyosgOPAkON8bZLjv1XyjFsTyc0FUu31HFx49mN685xXVqtm85
SC+Y7+FlUF5NTezNCIuikqlZUxTpPeJWsl4PyrOwvMHLfWqBpXbWh35D17avDsKG
+K38/E36S6EsC06dmqf+z74Qn/dc74sEh0W/97vgcOIPPeNvaKvBqWwPLw2d+6Hl
eOnTc+M2IHn7qeQbGPoD7PZBGUUJHsHLLQ1QUbgO3yKFiDA63rbsXr/NA1/Yp6T6
xb6g2Lq7pZ+vAAVA70qO5DBJaR+0+oP4C/UinFO9D/9c/p64PtQ=
=A4Xm
-----END PGP SIGNATURE-----

3
Sphinx-3.2.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:321d6d9b16fa381a5306e5a0b76cd48ffbc588e6340059a729c6fdd66087e0e8
size 5970067

16
Sphinx-3.2.1.tar.gz.asc Normal file
View File

@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEEihG3ml0NdJpm8KAwECwsF0mNa54FAl82bVIACgkQECwsF0mN
a55rIw//ROMAwRz9tmLbtcw/r9J4uBzzCIof36TTHwDXt8ZGS2hGJ8Fql32VXS5v
1wNMhbthgDSJTfeztSZKQVwmXz6e9q2ignQwUpd/9RvFk/Zf51+v2z6Qtt+Qozn9
DC094CiTrsnKmAW4ZHCb6xuxyYV1bj1KXbnDdECERFt9QNssi2cnKmf72bCX/cae
Kw/hKxeYiVDjax6zdggPKuTxZ8zOikCEnoo43iwXxF+OQWitz20y0hk8bR74NBR7
l2KEJTlAQ/YhsYh7HlRzGU1wT37u5TO0JzzZW7jdbj+j74aeml6w2/67sTSxLNjj
PF3xEDz9YTF1yT9AM1STxV6Aso8y4yfTI1aH23l86gn+f6sx2DA3wxYAWcn/Qvtu
Y7uqZEaIT1glvhZg3ya+5SOwFvznNiZ/nLOE1BgWH3iIzfEOtU3ZbDOU8H/Wne4r
uQGnD3cwvKzZ0cqO3r3XwU98WNU6EFTo3oYWA1k9Pkv9Sb4XhUEKL2RZNbHpGhqQ
9ykJavutrqvyrMoGi5dADZ74YRXGNaQbCX03W6cOg+DLN2buZWevqxclixxz5uXK
SmjSD68jIMH2Qe2d95W8L6hg2vvspenRIhtRped9qkYbzALkgeIHIzpBVfXwKCHx
48jtVh7CgZim57GUfwAGfqDGy2M+V4f49CCf4GNBBK7wAgQ0arc=
=Fh8q
-----END PGP SIGNATURE-----

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Tue Aug 18 14:44:04 UTC 2020 - Dirk Mueller <dmueller@suse.com>
- update to 3.2.1:
* #8095: napoleon: Add :confval:`napoleon_preprocess_types` to enable the type
preprocessor for numpy style docstrings
* #8114: C and C++, parse function attributes after parameters and qualifiers.
* #8074: napoleon: Crashes during processing C-ext module
* #8088: napoleon: "Inline literal start-string without end-string" warning in
Numpy style Parameters section
* #8084: autodoc: KeyError is raised on documenting an attribute of the broken
class
* #8091: autodoc: AttributeError is raised on documenting an attribute on Python
3.5.2
* #8099: autodoc: NameError is raised when target code uses ``TYPE_CHECKING``
* C++, fix parsing of template template paramters, broken by the fix of #7944
-------------------------------------------------------------------
Thu Aug 13 14:02:03 UTC 2020 - Dirk Mueller <dmueller@suse.com>

View File

@ -28,7 +28,7 @@
%endif
%define skip_python2 1
Name: python-Sphinx%{psuffix}
Version: 3.2.0
Version: 3.2.1
Release: 0
Summary: Python documentation generator
License: BSD-2-Clause