From 1cdadc0cccf75bacdd1d107ade3d7b07e6dc6f53 Mon Sep 17 00:00:00 2001 From: amishamehta99 Date: Wed, 4 Mar 2026 00:56:10 +0530 Subject: [PATCH 1/4] DOC: Clarify Windows CMD behavior for multi-line pip command --- doc/install/index.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/install/index.rst b/doc/install/index.rst index 68ccfb8634ff..25e7f13562bb 100644 --- a/doc/install/index.rst +++ b/doc/install/index.rst @@ -106,6 +106,13 @@ scientific-python-nightly-wheels as the package index to query:: --extra-index-url https://pypi.org/simple \ matplotlib + .. note:: + + On Windows Command Prompt, line continuation using ``\`` is not supported. + Run the above command as a single line instead, e.g.: + + ``python -m pip install --upgrade --pre --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --extra-index-url https://pypi.org/simple matplotlib`` + .. _install-source: Install from source From 03f1195191ec5e422bf147f3fd653f64022324d8 Mon Sep 17 00:00:00 2001 From: amishamehta99 Date: Wed, 4 Mar 2026 01:28:37 +0530 Subject: [PATCH 2/4] Trigger CI rerun From 8f5c8b721b83954367c0887d5b3cd8b9b2475df9 Mon Sep 17 00:00:00 2001 From: amishamehta99 Date: Thu, 5 Mar 2026 00:26:00 +0530 Subject: [PATCH 3/4] DOC: Use single-line pip command to avoid Windows CMD line continuation issue --- doc/install/index.rst | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/doc/install/index.rst b/doc/install/index.rst index 25e7f13562bb..6029b8673be5 100644 --- a/doc/install/index.rst +++ b/doc/install/index.rst @@ -99,12 +99,7 @@ Matplotlib makes nightly development build wheels available on the These wheels can be installed with ``pip`` by specifying scientific-python-nightly-wheels as the package index to query:: - python -m pip install \ - --upgrade \ - --pre \ - --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \ - --extra-index-url https://pypi.org/simple \ - matplotlib + python -m pip install --upgrade --pre --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --extra-index-url https://pypi.org/simple matplotlib .. note:: From 5f272c866ebe112db1d638d8a07e556b9a4646a8 Mon Sep 17 00:00:00 2001 From: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com> Date: Fri, 6 Mar 2026 15:55:01 +0100 Subject: [PATCH 4/4] Remove unnecessary parts --- doc/install/index.rst | 7 ------- 1 file changed, 7 deletions(-) diff --git a/doc/install/index.rst b/doc/install/index.rst index 6029b8673be5..4e8792dd5d32 100644 --- a/doc/install/index.rst +++ b/doc/install/index.rst @@ -101,13 +101,6 @@ scientific-python-nightly-wheels as the package index to query:: python -m pip install --upgrade --pre --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --extra-index-url https://pypi.org/simple matplotlib - .. note:: - - On Windows Command Prompt, line continuation using ``\`` is not supported. - Run the above command as a single line instead, e.g.: - - ``python -m pip install --upgrade --pre --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --extra-index-url https://pypi.org/simple matplotlib`` - .. _install-source: Install from source