From adbab61f66cdbbf1310b203a1b0b1382b946511e Mon Sep 17 00:00:00 2001 From: rosskouk <49451758+rosskouk@users.noreply.github.com> Date: Mon, 8 Sep 2025 14:41:30 +0100 Subject: [PATCH] Update build_sphinx_docs.yml Workaround OS crypto bug --- .github/workflows/build_sphinx_docs.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_sphinx_docs.yml b/.github/workflows/build_sphinx_docs.yml index f2c6272..90dd614 100644 --- a/.github/workflows/build_sphinx_docs.yml +++ b/.github/workflows/build_sphinx_docs.yml @@ -24,6 +24,8 @@ jobs: run: | python3 -m pip install --upgrade pip pip3 install -r skill/requirements-full.txt + # Workaround for oscrypto bug + pip install --force --upgrade git+https://github.com/wbond/oscrypto.git@d5f3437 - name: Prepare for new documentation run: | @@ -59,4 +61,4 @@ jobs: git add * git commit -am "Documentation update" git push - continue-on-error: true \ No newline at end of file + continue-on-error: true