Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/CI_docusaurus_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,8 @@ jobs:
with:
python-version: "3.10"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U haystack-pydoc-tools
- name: Install Hatch
run: pip install --upgrade hatch

- name: Get project folder
id: pathfinder
Expand All @@ -50,7 +48,7 @@ jobs:
- name: Generate API reference
working-directory: ${{ steps.pathfinder.outputs.project_path }}

run: pydoc-markdown pydoc/config_docusaurus.yml
run: hatch run docs

- name: Upload API reference artifact
uses: actions/upload-artifact@v5
Expand Down
86 changes: 0 additions & 86 deletions .github/workflows/CI_readme_sync.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/workflows/anthropic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ jobs:
if: matrix.python-version == '3.9' && runner.os == 'Linux'
run: hatch run fmt-check && hatch run test:types

- name: Generate docs
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was simply missing

if: matrix.python-version == '3.9' && runner.os == 'Linux'
run: hatch run docs

- name: Run tests
run: hatch run test:cov-retry

Expand Down
29 changes: 0 additions & 29 deletions integrations/aimlapi/pydoc/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion integrations/aimlapi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ git_describe_command = 'git describe --tags --match="integrations/aimlapi-v[0-9]
installer = "uv"
dependencies = ["haystack-pydoc-tools", "ruff"]
[tool.hatch.envs.default.scripts]
docs = ["pydoc-markdown pydoc/config.yml"]
docs = ["pydoc-markdown pydoc/config_docusaurus.yml"]
fmt = "ruff check --fix {args} && ruff format {args}"
fmt-check = "ruff check {args} && ruff format --check {args}"

Expand Down
42 changes: 0 additions & 42 deletions integrations/amazon_bedrock/pydoc/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion integrations/amazon_bedrock/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ installer = "uv"
dependencies = ["haystack-pydoc-tools", "ruff"]

[tool.hatch.envs.default.scripts]
docs = ["pydoc-markdown pydoc/config.yml"]
docs = ["pydoc-markdown pydoc/config_docusaurus.yml"]
fmt = "ruff check --fix {args} && ruff format {args}"
fmt-check = "ruff check {args} && ruff format --check {args}"

Expand Down
29 changes: 0 additions & 29 deletions integrations/amazon_sagemaker/pydoc/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion integrations/amazon_sagemaker/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ git_describe_command = 'git describe --tags --match="integrations/amazon_sagemak
installer = "uv"
dependencies = ["haystack-pydoc-tools", "ruff"]
[tool.hatch.envs.default.scripts]
docs = ["pydoc-markdown pydoc/config.yml"]
docs = ["pydoc-markdown pydoc/config_docusaurus.yml"]
fmt = "ruff check --fix {args} && ruff format {args}"
fmt-check = "ruff check {args} && ruff format --check {args}"

Expand Down
30 changes: 0 additions & 30 deletions integrations/anthropic/pydoc/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion integrations/anthropic/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ installer = "uv"
dependencies = ["haystack-pydoc-tools", "ruff"]

[tool.hatch.envs.default.scripts]
docs = ["pydoc-markdown pydoc/config.yml"]
docs = ["pydoc-markdown pydoc/config_docusaurus.yml"]
fmt = "ruff check --fix {args} && ruff format {args}"
fmt-check = "ruff check {args} && ruff format --check {args}"

Expand Down
31 changes: 0 additions & 31 deletions integrations/astra/pydoc/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion integrations/astra/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ git_describe_command = 'git describe --tags --match="integrations/astra-v[0-9]*"
installer = "uv"
dependencies = ["haystack-pydoc-tools", "ruff"]
[tool.hatch.envs.default.scripts]
docs = ["pydoc-markdown pydoc/config.yml"]
docs = ["pydoc-markdown pydoc/config_docusaurus.yml"]
fmt = "ruff check --fix {args} && ruff format {args}"
fmt-check = "ruff check {args} && ruff format --check {args}"

Expand Down
31 changes: 0 additions & 31 deletions integrations/azure_ai_search/pydoc/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion integrations/azure_ai_search/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ installer = "uv"
dependencies = ["haystack-pydoc-tools", "ruff"]

[tool.hatch.envs.default.scripts]
docs = ["pydoc-markdown pydoc/config.yml"]
docs = ["pydoc-markdown pydoc/config_docusaurus.yml"]
fmt = "ruff check --fix {args} && ruff format {args}"
fmt-check = "ruff check {args} && ruff format --check {args}"

Expand Down
Loading
Loading