Skip to content

Commit

Permalink
Update CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
WardBrian committed Oct 17, 2023
1 parent 3029072 commit 991a63b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 991a63b

Please sign in to comment.