Skip to content

Commit 7575924

Browse files
authored
Fixed mkdocstrings[python] and removed support for python 3.7 (#46)
* Update docs build dependencies * Update mkdocstrings version * Removed unused custom_templates from mkdocs.yml * Fixed module links in index.md * Removed duplicate dependency in docs.yml * Removed support for python 3.7
1 parent a54a47d commit 7575924

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: ['ubuntu-latest', 'macos-13', 'windows-latest']
10-
python-version: ["3.7", "3.11"]
10+
python-version: ["3.8", "3.11"]
1111
runs-on: ${{ matrix.os }}
1212
steps:
1313
- uses: actions/checkout@v3

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ Available modules are
7272
| `historic` | [solcast.historic](historic.md) |
7373
| `forecast` | [solcast.forecast](forecast.md) |
7474
| `tmy` | [solcast.tmy](tmy.md) |
75-
| `pv_power_sites` | [solcast.pv_power_sites](pv_power_sites) |
76-
| `aggregations` | [solcast.aggregations](aggregations) |
75+
| `pv_power_sites` | [solcast.pv_power_sites](pv_power_sites.md) |
76+
| `aggregations` | [solcast.aggregations](aggregations.md) |
7777

7878

7979
## Docs

mkdocs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ plugins:
6363
- mkdocs-jupyter
6464
- mkdocstrings:
6565
enabled: !ENV [ ENABLE_MKDOCSTRINGS, true ]
66-
custom_templates: templates
6766
default_handler: python
6867
handlers:
6968
python:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ docs = [
4242
"pytest",
4343
"mkdocs",
4444
"mkdocs-material",
45-
"mkdocstrings[python]==0.22",
45+
"mkdocstrings[python]==0.25",
4646
"mkdocs-jupyter",
4747
"kaleido"
4848
]

0 commit comments

Comments
 (0)