all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#70431] [PATCH 0/2] Correct some Python dependencies.
@ 2024-04-17  5:36 Nicolas Graves via Guix-patches via
  2024-04-17  5:40 ` [bug#70431] [PATCH 1/2] gnu: contourpy: Correct dependencies Nicolas Graves via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2024-04-17  5:36 UTC (permalink / raw)
  To: 70431; +Cc: ngraves

Test dependencies for python should go into native-inputs rather than propagated-inputs.

Nicolas Graves (2):
  gnu: contourpy: Correct dependencies.
  gnu: python-seaborn: Correct dependencies.

 gnu/packages/python-xyz.scm | 38 +++++++++++++++++++------------------
 1 file changed, 20 insertions(+), 18 deletions(-)

-- 
2.41.0





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#70431] [PATCH 1/2] gnu: contourpy: Correct dependencies.
  2024-04-17  5:36 [bug#70431] [PATCH 0/2] Correct some Python dependencies Nicolas Graves via Guix-patches via
@ 2024-04-17  5:40 ` Nicolas Graves via Guix-patches via
  2024-04-17  5:40   ` [bug#70431] [PATCH 2/2] gnu: python-seaborn: " Nicolas Graves via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2024-04-17  5:40 UTC (permalink / raw)
  To: 70431; +Cc: ngraves

* gnu/packages/python-xyz.scm (contourpy): Correct dependencies.
  [propagated-inputs]: Move all except python-numpy from here...
  [native-inputs]: ...to here.

Change-Id: I99048270570689ed9ceab6e0ff6db9561193425e
---
 gnu/packages/python-xyz.scm | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 44c709a880..643c427392 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1144,17 +1144,19 @@ (define-public python-contourpy
              "--ignore=tests/test_filled.py"
              "--ignore=tests/test_lines.py"
              "--ignore=tests/test_renderer.py")))
-    (propagated-inputs (list python-mypy
-                             python-numpy
-                             python-pillow
-                             python-pytest
-                             python-pytest-cov
-                             python-pytest-xdist
-                             python-selenium
-                             python-sphinx
-                             python-sphinx-copybutton
-                             python-wurlitzer))
-    (native-inputs (list meson-python pybind11-2.10 pkg-config))
+    (propagated-inputs (list python-numpy))
+    (native-inputs (list meson-python
+                         pybind11-2.10
+                         pkg-config
+                         python-mypy
+                         python-pillow
+                         python-pytest
+                         python-pytest-cov
+                         python-pytest-xdist
+                         python-selenium
+                         python-sphinx
+                         python-sphinx-copybutton
+                         python-wurlitzer))
     (home-page "https://contourpy.readthedocs.io/")
     (synopsis
      "Python library for calculating contours of 2D quadrilateral grids")
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#70431] [PATCH 2/2] gnu: python-seaborn: Correct dependencies.
  2024-04-17  5:40 ` [bug#70431] [PATCH 1/2] gnu: contourpy: Correct dependencies Nicolas Graves via Guix-patches via
@ 2024-04-17  5:40   ` Nicolas Graves via Guix-patches via
  0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2024-04-17  5:40 UTC (permalink / raw)
  To: 70431; +Cc: ngraves

* gnu/packages/python-xyz.scm (python-seaborn): Correct dependencies.
  [propagated-inputs]: Move python-ipykernel, python-mypy,
  python-nbconvert, python-numpydoc, python-pyyaml from here...
  [native-inputs]: ... to here.

Change-Id: I94a28f0cb8ec7c2171007f2b635dc10d7a8fcc8c
---
 gnu/packages/python-xyz.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 643c427392..f6f90d9c7e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13262,23 +13262,23 @@ (define-public python-seaborn
                 "0ycibcs6kvd3xi4zsxna81claqifyb9dn6z6jwc5x7lqqplnbbdz"))))
     (build-system pyproject-build-system)
     (propagated-inputs
-     (list python-ipykernel
-           python-matplotlib
-           python-mypy
-           python-nbconvert
+     (list python-matplotlib
            python-numpy
-           python-numpydoc
            python-pandas
-           python-pyyaml
            python-scipy
            python-statsmodels))
     (native-inputs
      (list python-flake8
            python-flit-core
            python-pre-commit
+           python-ipykernel
+           python-nbconvert
+           python-numpydoc
+           python-mypy
            python-pytest
            python-pytest-cov
-           python-pytest-xdist))
+           python-pytest-xdist
+           python-pyyaml))
     (home-page "https://seaborn.pydata.org/")
     (synopsis "Statistical data visualization")
     (description
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-17  5:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-17  5:36 [bug#70431] [PATCH 0/2] Correct some Python dependencies Nicolas Graves via Guix-patches via
2024-04-17  5:40 ` [bug#70431] [PATCH 1/2] gnu: contourpy: Correct dependencies Nicolas Graves via Guix-patches via
2024-04-17  5:40   ` [bug#70431] [PATCH 2/2] gnu: python-seaborn: " Nicolas Graves via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.