Skip to content

Commit

Permalink
Fix RTD builds (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertodr committed Aug 25, 2023
1 parent 415c083 commit a446b2b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 15 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,11 @@ jobs:
os: [ubuntu-latest, macos-latest]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"

steps:
- uses: actions/checkout@v3

- name: Cache conda
uses: actions/cache@v3
env:
Expand All @@ -52,7 +50,7 @@ jobs:
environment-file: environment.yml
channel-priority: true
python-version: ${{ matrix.python-version }}

- name: Configure
shell: bash -l {0}
env:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/pip-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ jobs:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"

steps:
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "miniconda3-4.7"
python: "mambaforge-22.9"

conda:
environment: environment.yml
Expand Down
6 changes: 0 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,3 @@ def version_from_file(f):
"notebook_interface": "jupyterlab",
},
}
html_sidebars = {
"**": [
"sidebar-logo.html",
"sbt-sidebar-nav.html",
]
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ requires = [
"wheel",
"scikit-build>=0.13",
"cmake>=3.17",
"ninja; platform_system!='Windows'",
"ninja",
]

build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ setup_requires =
wheel
scikit-build >=0.13
cmake >= 3.17
ninja; platform_system!='Windows'
ninja

install_requires =
numpy >= 1.15.0
Expand Down

0 comments on commit a446b2b

Please sign in to comment.