From d1dc85ea43a6ea0a920b7f6977c487185a762f4e Mon Sep 17 00:00:00 2001 From: Timothy Johnson <timothy.johnson@broadcom.com> Date: Tue, 12 Mar 2024 13:55:21 -0400 Subject: [PATCH] Update installation docs for prerelease Signed-off-by: Timothy Johnson <timothy.johnson@broadcom.com> --- docs/requirements.txt | 3 ++- docs/source/usage/examples.rst | 2 +- docs/source/usage/installation.rst | 6 ++---- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 5601d12c..608fa822 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,4 @@ +PyEnchant>=3.3.0rc1 sphinx_rtd_theme>=0.5.1 sphinxcontrib-spelling==8.0.0 -e ./src/core @@ -5,4 +6,4 @@ sphinxcontrib-spelling==8.0.0 -e ./src/zos_files -e ./src/zos_jobs -e ./src/zos_tso --e ./src/zosmf \ No newline at end of file +-e ./src/zosmf diff --git a/docs/source/usage/examples.rst b/docs/source/usage/examples.rst index 98642640..205f6493 100644 --- a/docs/source/usage/examples.rst +++ b/docs/source/usage/examples.rst @@ -9,7 +9,7 @@ Create a dictionary to handle communication with the plug-in: from zowe.zos_console_for_zowe_sdk import Console profile = { "host": "<host address>", - "port" : 443 , # Include the port if different from the default (443) + "port": 443, # Include the port if different from the default (443) "user": "<user>", "password": "<password>", } diff --git a/docs/source/usage/installation.rst b/docs/source/usage/installation.rst index 2bd3ff73..c6853649 100644 --- a/docs/source/usage/installation.rst +++ b/docs/source/usage/installation.rst @@ -15,14 +15,12 @@ To install all Zowe SDK packages using pip: .. code-block:: - pip install zowe + pip install -U --pre zowe To install only a subpackage using pip: .. code-block:: - pip install zowe.<subpackage>_for_zowe_sdk + pip install -U --pre zowe.<subpackage>_for_zowe_sdk To see all available sub-packages check the :doc:`../packages/packages` section. - -