From 6f08cce0428e1d73b03012446a14f72ea59fb982 Mon Sep 17 00:00:00 2001 From: Keoni Gandall Date: Sat, 17 Aug 2024 17:32:40 +0000 Subject: [PATCH] add root --- .github/workflows/docs.yml | 2 +- py/dnadesign/__init__.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5ee91bb..f462a74 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -65,7 +65,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: - path: './docs/dnadesign' # Adjust this to your build output directory + path: './docs' # Adjust this to your build output directory - name: Deploy to GitHub Pages id: deployment diff --git a/py/dnadesign/__init__.py b/py/dnadesign/__init__.py index 4c627c7..c1186e5 100644 --- a/py/dnadesign/__init__.py +++ b/py/dnadesign/__init__.py @@ -9,6 +9,7 @@ # Required so that pdoc doesn't attempt to parse libdnadesign __all__ = [ + "__init__", "cffi_bindings", "parsers" ]