From 27555b05661931f7087b735db7be715ab9ac8f27 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 13 Aug 2022 11:58:08 +0200 Subject: 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. --- gnu/packages/python-science.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/python-science.scm') diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 95f60aae7b6..ce0ba4b6d2a 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -146,7 +146,7 @@ atlas_libs = openblas~%" #$(this-package-input "openblas")))))) python-pydata-sphinx-theme python-pytest python-pytest-xdist - python-sphinx + python-sphinx-4 python-sphinx-panels python-threadpoolctl which)) -- cgit v1.3 From 2266ec5eb1bcc2c87baa27297a4205eebf325424 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 18 Sep 2022 16:26:18 +0200 Subject: gnu: python-cython: Remove duplicate version. * gnu/packages/python-xyz.scm (python-cython-0.29.32): Remove variable. * gnu/packages/python-science.scm (python-pandas)[native-inputs]: Change from PYTHON-CYTHON-0.29.32 to PYTHON-CYTHON. --- gnu/packages/python-science.scm | 2 +- gnu/packages/python-xyz.scm | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) (limited to 'gnu/packages/python-science.scm') diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index d828399f79c..80acb606b26 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -422,7 +422,7 @@ library.") (inputs (list which xclip xsel)) (native-inputs - (list python-cython-0.29.32 + (list python-cython python-beautifulsoup4 python-lxml python-html5lib diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 946b7e839b4..56a07564c91 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5605,18 +5605,6 @@ programming language and the extended Cython programming language. It makes writing C extensions for Python as easy as Python itself.") (license license:asl2.0))) -;; Newer version required for Pandas. -(define-public python-cython-0.29.32 - (package - (inherit python-cython) - (version "0.29.32") - (source (origin - (method url-fetch) - (uri (pypi-uri "Cython" version)) - (sha256 - (base32 - "1xqsihpqnfal29nb5kmw8z71nd4jbsnbz7p3lkr094xpb13wycw7")))))) - (define-public python-cython-3 (package (inherit python-cython) -- cgit v1.3