mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: python-sphinx-panels: Use python-sphinx@4.
...also add deprecation notice, and change its users accordingly. * gnu/packages/sphinx.scm (python-sphinx-panels)[propagated-inputs]: Change from PYTHON-SPHINX to PYTHON-SPHINX-4. [description]: Mention that it is unmaintained. * gnu/packages/python-science.scm (python-scipy)[native-inputs]: Likewise. * gnu/packages/python-xyz.scm (python-numpy-documentation)[native-inputs]: Likewise.
This commit is contained in:
parent
00e78042b7
commit
27555b0566
3 changed files with 6 additions and 4 deletions
|
@ -146,7 +146,7 @@ (define-public python-scipy
|
||||||
python-pydata-sphinx-theme
|
python-pydata-sphinx-theme
|
||||||
python-pytest
|
python-pytest
|
||||||
python-pytest-xdist
|
python-pytest-xdist
|
||||||
python-sphinx
|
python-sphinx-4
|
||||||
python-sphinx-panels
|
python-sphinx-panels
|
||||||
python-threadpoolctl
|
python-threadpoolctl
|
||||||
which))
|
which))
|
||||||
|
|
|
@ -5731,7 +5731,7 @@ (define-public python-numpy-documentation
|
||||||
python-pandas
|
python-pandas
|
||||||
python-pydata-sphinx-theme
|
python-pydata-sphinx-theme
|
||||||
python-scipy ;used by matplotlib
|
python-scipy ;used by matplotlib
|
||||||
python-sphinx
|
python-sphinx-4
|
||||||
python-sphinx-panels
|
python-sphinx-panels
|
||||||
texinfo
|
texinfo
|
||||||
texlive-bin
|
texlive-bin
|
||||||
|
|
|
@ -377,14 +377,16 @@ (define-public python-sphinx-panels
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "pytest")))))))
|
(invoke "pytest")))))))
|
||||||
(propagated-inputs (list python-docutils python-sphinx))
|
(propagated-inputs (list python-docutils python-sphinx-4))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest
|
(list python-pytest
|
||||||
python-pytest-regressions))
|
python-pytest-regressions))
|
||||||
(home-page "https://github.com/executablebooks/sphinx-panels")
|
(home-page "https://github.com/executablebooks/sphinx-panels")
|
||||||
(synopsis "Sphinx extension for creating panels in a grid layout")
|
(synopsis "Sphinx extension for creating panels in a grid layout")
|
||||||
(description
|
(description
|
||||||
"This package provides a sphinx extension for creating panels in a grid layout.")
|
"This package provides a sphinx extension for creating panels in a
|
||||||
|
grid layout. It is no longer maintained and users are encouraged to use
|
||||||
|
@code{sphinx-design} instead.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-sphinxcontrib-programoutput
|
(define-public python-sphinxcontrib-programoutput
|
||||||
|
|
Loading…
Reference in a new issue