forked from pool/python-numpydoc
Accepting request 718088 from devel:languages:python:numeric
- Do not pull both nose and pytest, just stick with pytest - Update to version 0.9.1 * Updating minimum sphinx version in setup.py - Update to version 0.9.0 * CI: bump minimum Sphinx version tested from 1.2.3 to 1.6.5 * report object name upon mangle_docstrings exception * ENH: Just use obj * FIX: Opt-in, test, uniform styling, css * Add cross-reference links to parameter types * ENH: Allow a trailing COMMA or PERIOD in a See Also function list block. * FIX parsing of type-only return params * ENH: Added support for multiple functions+description * ENH: accept autoclass member options * Support Receives section for generator.send(...) params * Use DEDUPLICATION_TAG to determine whether a citation node is in a docstring * ENH Only print the index if it is necessary. * Clarify location of certain invalid docstrings. * BUG: turn member descriptors into links * FIX: Escape chars in re * MNT Fix collections.abc imports * FIX pedantic handling of whitespace in reference regex * FIX remove duplicated citation back-references * Move arg and kwargs escaping to docscrape_sphinx * Escape the * in *args and **kwargs OBS-URL: https://build.opensuse.org/request/show/718088 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpydoc?expand=0&rev=9
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:61f4bf030937b60daa3262e421775838c945dcdd671f37b69e8e4854c7eb5ffd
|
||||
size 20488
|
3
numpydoc-0.9.1.tar.gz
Normal file
3
numpydoc-0.9.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e08f8ee92933e324ff347771da15e498dbf0bc6295ed15003872b34654a0a627
|
||||
size 27583
|
@@ -1,3 +1,36 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 24 07:27:44 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Do not pull both nose and pytest, just stick with pytest
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 23 17:56:18 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||||
|
||||
- Update to version 0.9.1
|
||||
* Updating minimum sphinx version in setup.py
|
||||
- Update to version 0.9.0
|
||||
* CI: bump minimum Sphinx version tested from 1.2.3 to 1.6.5
|
||||
* report object name upon mangle_docstrings exception
|
||||
* ENH: Just use obj
|
||||
* FIX: Opt-in, test, uniform styling, css
|
||||
* Add cross-reference links to parameter types
|
||||
* ENH: Allow a trailing COMMA or PERIOD in a See Also function list block.
|
||||
* FIX parsing of type-only return params
|
||||
* ENH: Added support for multiple functions+description
|
||||
* ENH: accept autoclass member options
|
||||
* Support Receives section for generator.send(...) params
|
||||
* Use DEDUPLICATION_TAG to determine whether a citation node is
|
||||
in a docstring
|
||||
* ENH Only print the index if it is necessary.
|
||||
* Clarify location of certain invalid docstrings.
|
||||
* BUG: turn member descriptors into links
|
||||
* FIX: Escape chars in re
|
||||
* MNT Fix collections.abc imports
|
||||
* FIX pedantic handling of whitespace in reference regex
|
||||
* FIX remove duplicated citation back-references
|
||||
* Move arg and kwargs escaping to docscrape_sphinx
|
||||
* Escape the * in *args and **kwargs
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 29 04:11:15 UTC 2018 - arun@gmx.de
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-numpydoc
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -12,28 +12,29 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-numpydoc
|
||||
Version: 0.8.0
|
||||
Version: 0.9.1
|
||||
Release: 0
|
||||
Summary: Sphinx extension to support docstrings in Numpy format
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
URL: https://github.com/numpy/numpydoc
|
||||
Source: https://files.pythonhosted.org/packages/source/n/numpydoc/numpydoc-%{version}.tar.gz
|
||||
BuildRequires: %{python_module Sphinx >= 1.0.1}
|
||||
BuildRequires: %{python_module devel >= 2.7.7}
|
||||
BuildRequires: %{python_module Sphinx >= 1.6.}
|
||||
BuildRequires: %{python_module matplotlib}
|
||||
BuildRequires: %{python_module nose}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
# SECTION test requirements
|
||||
BuildRequires: %{python_module pytest}
|
||||
# /SECTION
|
||||
Requires: python-Jinja2 >= 2.3
|
||||
Requires: python-Sphinx >= 1.0.1
|
||||
Requires: python-Sphinx >= 1.6.5
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
@@ -53,7 +54,7 @@ of them in third-party projects.
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
%python_exec setup.py -q test
|
||||
%pytest
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE.txt
|
||||
|
Reference in New Issue
Block a user