diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4e45001..5ccb236 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,13 +19,6 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Checkout lndocs - uses: actions/checkout@v3 - with: - repository: laminlabs/lndocs - ssh-key: ${{ secrets.READ_LNDOCS }} - path: lndocs - ref: main - name: Setup Python uses: actions/setup-python@v3 with: diff --git a/noxfile.py b/noxfile.py index 89d3d75..9f373de 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,5 +1,3 @@ -from pathlib import Path - import nox nox.options.reuse_existing_virtualenvs = True @@ -23,6 +21,4 @@ def build(session): "--cov-report=term-missing", ) session.run("coverage", "xml") - prefix = "." if Path("./lndocs").exists() else ".." - session.install(f"{prefix}/lndocs") session.run("lndocs") diff --git a/pyproject.toml b/pyproject.toml index 9942d11..6626683 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,7 @@ Home = "https://github.com/buettnerlab/pytometry" dev = [ "pre-commit", "nox", + "lndocs", ] test = [ "pytest>=6.0",