diff --git a/doc/source/how-to/releasing.rst b/doc/source/how-to/releasing.rst index 50465ff18..0779bfc49 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://$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 .. 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 \