Skip to content

Commit

Permalink
Remove secrets sdk from doc requirements
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Nov 3, 2023
1 parent 71cbbce commit 7d7852b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/sdk-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build keyring binary
run: maturin build
working-directory: src/secrets
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
1 change: 0 additions & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ build:
os: ubuntu-22.04
tools:
python: "3"
rust: "1.70"

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
3 changes: 1 addition & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
sphinx_rtd_theme>=0.5.1
sphinxcontrib-spelling==5.4.0
sphinxcontrib-spelling==8.0.0
-e ./src/core
-e ./src/secrets
-e ./src/zos_console
-e ./src/zos_files
-e ./src/zos_jobs
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Unidecode==1.2.0
urllib3==1.26.18
wheel
zipp==3.4.0
-e ./src/core
-e ./src/core[secrets]
-e ./src/secrets
-e ./src/zos_console
-e ./src/zos_files
Expand Down
4 changes: 3 additions & 1 deletion src/core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
"pyyaml",
"requests",
"urllib3",
resolve_sdk_dep("secrets", "~=0.1.0"),
],
extras_require={
"secrets": [resolve_sdk_dep("secrets", "~=0.1.0")]
},
packages=find_namespace_packages(include=["zowe.*"]),
)

0 comments on commit 7d7852b

Please sign in to comment.