diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5d9354e..c298e29 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -22,14 +22,11 @@ jobs: with: python-version: 3.9 - - name: Install dependencies (python) + - name: Install dependencies and package run: | python -m pip install --upgrade pip wheel python -m pip install --upgrade -r docs/requirements.txt - - - name: Install package - run: | - pip install . + python -m pip install --no-deps . - name: Build docs run: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c805840..fdc3ce2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install .[dev] + python -m pip install .[dev] - name: Pytest run: | @@ -48,7 +48,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -e .[dev] + python -m pip install -e .[dev] - name: Check formatting run: | @@ -79,8 +79,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r docs/requirements.txt - pip install -e . + python -m pip install -r docs/requirements.txt + python -m pip install --no-deps -e . - name: Check docs env: diff --git a/docs/conf.py b/docs/conf.py index 6a8a99c..14e7b24 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ # theme options html_theme = "pydata_sphinx_theme" -html_static_path = ["_static"] +# html_static_path = ["_static"] html_show_sphinx = False html_theme_options = {