From f0a6e2548bb5d52b91f44e1f0489875a5cdb283f Mon Sep 17 00:00:00 2001 From: Christian Frisson Date: Wed, 24 Apr 2024 10:12:59 -0400 Subject: [PATCH 1/3] doc/source/how-to/releasing.rst: use double quotes for variable expansion --- doc/source/how-to/releasing.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/how-to/releasing.rst b/doc/source/how-to/releasing.rst index 50465ff18..8a5da5793 100644 --- a/doc/source/how-to/releasing.rst +++ b/doc/source/how-to/releasing.rst @@ -474,14 +474,14 @@ You can download artifacts from the Ansys private PyPI, public PyPI, and GitHub. .. code-block:: powershell - $env:INDEX_URL='https://$PYANSYS_PYPI_PRIVATE_READ_PAT@pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/simple/' + $env:INDEX_URL="https://$PYANSYS_PYPI_PRIVATE_READ_PAT@pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/simple/" python -m pip install ansys-- --index-url $env:INDEX_URL --no-dependencies .. tab-item:: macOS .. code-block:: text - export INDEX_URL='https://$PYANSYS_PYPI_PRIVATE_READ_PAT@pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/simple/' + export INDEX_URL="https://$PYANSYS_PYPI_PRIVATE_READ_PAT@pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/simple/" python -m pip install ansys-- \ --index-url $INDEX_URL \ @@ -491,7 +491,7 @@ You can download artifacts from the Ansys private PyPI, public PyPI, and GitHub. .. code-block:: text - export INDEX_URL='https://$PYANSYS_PYPI_PRIVATE_READ_PAT@pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/simple/' + export INDEX_URL="https://$PYANSYS_PYPI_PRIVATE_READ_PAT@pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/simple/" python -m pip install ansys-- \ --index-url $INDEX_URL \ From f002664fdd09d761805abdaf64b616670e703cb2 Mon Sep 17 00:00:00 2001 From: Christian Frisson Date: Wed, 24 Apr 2024 10:47:57 -0400 Subject: [PATCH 2/3] doc/source/how-to/releasing.rst: fix powershell nested variable --- doc/source/how-to/releasing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/how-to/releasing.rst b/doc/source/how-to/releasing.rst index 8a5da5793..0779bfc49 100644 --- a/doc/source/how-to/releasing.rst +++ b/doc/source/how-to/releasing.rst @@ -474,7 +474,7 @@ You can download artifacts from the Ansys private PyPI, public PyPI, and GitHub. .. code-block:: powershell - $env:INDEX_URL="https://$PYANSYS_PYPI_PRIVATE_READ_PAT@pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/simple/" + $env:INDEX_URL="https://$env:PYANSYS_PYPI_PRIVATE_READ_PAT@pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/simple/" python -m pip install ansys-- --index-url $env:INDEX_URL --no-dependencies .. tab-item:: macOS From 99d948f569b9c0d87b6bbc765404f18c494e4bd5 Mon Sep 17 00:00:00 2001 From: Christian Frisson Date: Wed, 24 Apr 2024 11:00:25 -0400 Subject: [PATCH 3/3] [skip pre-commit.ci]