Skip to content

Commit 02a21b3

Browse files
Copilotstrawgate
andauthored
Fix documentation build: install workspace packages and add missing __init__.py (#199)
Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: strawgate <[email protected]> Co-authored-by: William Easton <[email protected]>
1 parent 05abefe commit 02a21b3

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
with:
2626
enable-cache: true
2727

28-
- name: Install documentation dependencies
29-
run: uv pip install --system mkdocs mkdocs-material 'mkdocstrings[python]' mkdocstrings-python
28+
- name: Install all packages and dependencies
29+
run: uv sync --all-packages --group dev
3030

3131
- name: Build documentation
32-
run: mkdocs build
32+
run: uv run --extra docs mkdocs build
3333

3434
- name: Deploy to GitHub Pages
35-
run: mkdocs gh-deploy --force
35+
run: uv run --extra docs mkdocs gh-deploy --force

key-value/key-value-aio/src/key_value/aio/stores/__init__.py

Whitespace-only changes.

key-value/key-value-aio/src/key_value/aio/stores/elasticsearch/store.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929

3030
try:
3131
from elasticsearch import AsyncElasticsearch
32+
3233
from key_value.aio.stores.elasticsearch.utils import (
3334
get_aggregations_from_body,
3435
get_body_from_response,

key-value/key-value-aio/src/key_value/aio/stores/elasticsearch/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
ObjectApiResponse,
77
SerializationError,
88
)
9-
109
from elasticsearch import AsyncElasticsearch
1110

1211

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# WARNING: this file is auto-generated by 'build_sync_library.py'
2+
# from the original file '__init__.py'
3+
# DO NOT CHANGE! Change the original file instead.
4+
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# WARNING: this file is auto-generated by 'build_sync_library.py'
2+
# from the original file '__init__.py'
3+
# DO NOT CHANGE! Change the original file instead.
4+

0 commit comments

Comments
 (0)