- update to 0.2.12:
* small fix for tests * fix docs * An option to sort sections - drop sphinx72.patch (upstream) - Remove guard on upper Sphinx version. 3.5. See #42 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-autodocsumm?expand=0&rev=27
This commit is contained in:
parent
c22da9591c
commit
76788c9969
BIN
autodocsumm-0.2.11.tar.gz
(Stored with Git LFS)
BIN
autodocsumm-0.2.11.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
autodocsumm-0.2.12.tar.gz
Normal file
3
autodocsumm-0.2.12.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e027cf44fa413e74ae8fc0a99871410626f5ea731cea5461f8fd225d569254f6
|
||||||
|
size 47356
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 8 20:02:39 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 0.2.12:
|
||||||
|
* small fix for tests
|
||||||
|
* fix docs
|
||||||
|
* An option to sort sections
|
||||||
|
- drop sphinx72.patch (upstream)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 28 12:45:01 UTC 2023 - Markéta Machová <mmachova@suse.com>
|
Mon Aug 28 12:45:01 UTC 2023 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-autodocsumm
|
# spec file for package python-autodocsumm
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,17 +16,14 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define skip_python2 1
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-autodocsumm
|
Name: python-autodocsumm
|
||||||
Version: 0.2.11
|
Version: 0.2.12
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Extended sphinx autodoc including automatic autosummaries
|
Summary: Extended sphinx autodoc including automatic autosummaries
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
URL: https://github.com/Chilipp/autodocsumm
|
URL: https://github.com/Chilipp/autodocsumm
|
||||||
Source: https://github.com/Chilipp/autodocsumm/archive/v%{version}.tar.gz#/autodocsumm-%{version}.tar.gz
|
Source: https://github.com/Chilipp/autodocsumm/archive/v%{version}.tar.gz#/autodocsumm-%{version}.tar.gz
|
||||||
# PATCH-FIX-UPSTREAM https://github.com/Chilipp/autodocsumm/pull/88 fix build with Sphinx 7.2
|
|
||||||
Patch: sphinx72.patch
|
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module versioneer}
|
BuildRequires: %{python_module versioneer}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
@ -63,6 +60,6 @@ sed -i 's/,<5.0//' setup.py
|
|||||||
%doc README.rst
|
%doc README.rst
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitelib}/autodocsumm
|
%{python_sitelib}/autodocsumm
|
||||||
%{python_sitelib}/autodocsumm-%{version}*-info
|
%{python_sitelib}/autodocsumm-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
Index: autodocsumm-0.2.11/tests/test_autodocsumm.py
|
|
||||||
===================================================================
|
|
||||||
--- autodocsumm-0.2.11.orig/tests/test_autodocsumm.py
|
|
||||||
+++ autodocsumm-0.2.11/tests/test_autodocsumm.py
|
|
||||||
@@ -36,7 +36,7 @@ def in_between(full, sub, s0, *others):
|
|
||||||
|
|
||||||
|
|
||||||
def get_html(app, fname):
|
|
||||||
- with open(app.outdir + '/' + fname) as f:
|
|
||||||
+ with open(str(app.outdir) + '/' + fname) as f:
|
|
||||||
return f.read()
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user