pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/py-numpydoc py-numpydoc: updated to 0.9.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/652b681c7ac8
branches:  trunk
changeset: 335172:652b681c7ac8
user:      adam <adam%pkgsrc.org@localhost>
date:      Fri Jun 14 15:17:17 2019 +0000

description:
py-numpydoc: updated to 0.9.1

numpydoc 0.9.1
Updating minimum sphinx version in setup.py

numpydoc 0.9.0
Implemented enhancements:
MAINT: Add CircleCI
ENH: accept autoclass member options
Clarify location of certain invalid docstrings.
ENH: Xref param type
Make parameter a namedtuple
ENH: Added support for multiple functions+description in a See Also block
DOC: Added example of multi-line code in Examples section.
switch the test suite to pytest
Report object name upon mangle_docstrings exception
Add option to use member listing for attributes
Require that sphinx issue no warnings in CI
Command-line tool to help debug NumpyDocString
Support Receives section for generator.send(...) params

Fixed bugs:
References messed up
BUG?: References always have an errant second link
BUG: turn member descriptor attributes into links
FIX: Fix collections.abc imports
FIX: Escape chars in re
Fix markup in format.rst.
Move setup of autosummary earlier in setup().
Only print the index if it is necessary.
FIX pedantic handling of whitespace in reference regex
FIX remove duplicated citation back-references
Use DEDUPLICATION_TAG to determine whether a citation node is in a docstring
FIX parsing of type-only return params
pip --use-wheel no longer exists
DOC: Add missing backslash to omega for inline math example.
DOC: remove links to numpy repo file
Escape the * in *args and **kwargs

Closed issues:
autosummary fails with numpydoc where napoleon succeeds
NumpyDocString doesn't roundtrip well
Generating a docstring from a numpydoc object
make parameters and attributes anchors in docstrings
BUG: Plot(s) not rendered if docstring ends with normal text after show command
Location reporting returns useless information
Anonymous return values have their types populated in the name slot of the tuple.
support for coroutine
multiple entries in a See Also section

diffstat:

 textproc/py-numpydoc/Makefile |   6 +++---
 textproc/py-numpydoc/PLIST    |  17 ++++++++++++++++-
 textproc/py-numpydoc/distinfo |  10 +++++-----
 3 files changed, 24 insertions(+), 9 deletions(-)

diffs (71 lines):

diff -r 1de2ae28ab31 -r 652b681c7ac8 textproc/py-numpydoc/Makefile
--- a/textproc/py-numpydoc/Makefile     Fri Jun 14 15:13:35 2019 +0000
+++ b/textproc/py-numpydoc/Makefile     Fri Jun 14 15:17:17 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2018/08/29 11:04:42 adam Exp $
+# $NetBSD: Makefile,v 1.6 2019/06/14 15:17:17 adam Exp $
 
-DISTNAME=      numpydoc-0.8.0
+DISTNAME=      numpydoc-0.9.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=n/numpydoc/}
@@ -11,7 +11,7 @@
 LICENSE=       modified-bsd
 
 DEPENDS+=      ${PYPKGPREFIX}-jinja2>=2.3:../../textproc/py-jinja2
-DEPENDS+=      ${PYPKGPREFIX}-sphinx>=1.2.3:../../textproc/py-sphinx
+DEPENDS+=      ${PYPKGPREFIX}-sphinx>=1.6.5:../../textproc/py-sphinx
 
 USE_LANGUAGES= # none
 
diff -r 1de2ae28ab31 -r 652b681c7ac8 textproc/py-numpydoc/PLIST
--- a/textproc/py-numpydoc/PLIST        Fri Jun 14 15:13:35 2019 +0000
+++ b/textproc/py-numpydoc/PLIST        Fri Jun 14 15:17:17 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2017/12/14 13:36:12 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2019/06/14 15:17:17 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -7,6 +7,9 @@
 ${PYSITELIB}/numpydoc/__init__.py
 ${PYSITELIB}/numpydoc/__init__.pyc
 ${PYSITELIB}/numpydoc/__init__.pyo
+${PYSITELIB}/numpydoc/__main__.py
+${PYSITELIB}/numpydoc/__main__.pyc
+${PYSITELIB}/numpydoc/__main__.pyo
 ${PYSITELIB}/numpydoc/docscrape.py
 ${PYSITELIB}/numpydoc/docscrape.pyc
 ${PYSITELIB}/numpydoc/docscrape.pyo
@@ -20,3 +23,15 @@
 ${PYSITELIB}/numpydoc/tests/test_docscrape.py
 ${PYSITELIB}/numpydoc/tests/test_docscrape.pyc
 ${PYSITELIB}/numpydoc/tests/test_docscrape.pyo
+${PYSITELIB}/numpydoc/tests/test_main.py
+${PYSITELIB}/numpydoc/tests/test_main.pyc
+${PYSITELIB}/numpydoc/tests/test_main.pyo
+${PYSITELIB}/numpydoc/tests/test_numpydoc.py
+${PYSITELIB}/numpydoc/tests/test_numpydoc.pyc
+${PYSITELIB}/numpydoc/tests/test_numpydoc.pyo
+${PYSITELIB}/numpydoc/tests/test_xref.py
+${PYSITELIB}/numpydoc/tests/test_xref.pyc
+${PYSITELIB}/numpydoc/tests/test_xref.pyo
+${PYSITELIB}/numpydoc/xref.py
+${PYSITELIB}/numpydoc/xref.pyc
+${PYSITELIB}/numpydoc/xref.pyo
diff -r 1de2ae28ab31 -r 652b681c7ac8 textproc/py-numpydoc/distinfo
--- a/textproc/py-numpydoc/distinfo     Fri Jun 14 15:13:35 2019 +0000
+++ b/textproc/py-numpydoc/distinfo     Fri Jun 14 15:17:17 2019 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2018/08/29 11:04:42 adam Exp $
+$NetBSD: distinfo,v 1.5 2019/06/14 15:17:17 adam Exp $
 
-SHA1 (numpydoc-0.8.0.tar.gz) = 1b3fef1a64f7c01b8137c0de9b9ace7bae798a55
-RMD160 (numpydoc-0.8.0.tar.gz) = ba273ec50d275eb93051a4cf32ebc8e5022139ea
-SHA512 (numpydoc-0.8.0.tar.gz) = 8302c7eb6518b46823655ff26776beae35011c9842b6ed61d1db3f7ffd1f34ec695ffde0f0be91152ad59510a5904445ed6dcd877f9b1fb520adc8d9f895635d
-Size (numpydoc-0.8.0.tar.gz) = 20488 bytes
+SHA1 (numpydoc-0.9.1.tar.gz) = 2d91540ef54dba7f9f45324fb31b693271f8157e
+RMD160 (numpydoc-0.9.1.tar.gz) = 14a0bddfb0cf0d9810b92055d7b3c680830132e3
+SHA512 (numpydoc-0.9.1.tar.gz) = 85a47ed86823baa3125dde4bb2760ce56f6fed9bb29dc64187dee4101f6344b5065146209f603d50a84a5d9cf0b7f4e5134fc0b495219e68100e05e028b61f2a
+Size (numpydoc-0.9.1.tar.gz) = 27583 bytes



Home | Main Index | Thread Index | Old Index