Skip to content

Commit

Permalink
ci: test with Python 3.9 (#127)
Browse files Browse the repository at this point in the history
* test with py39

* trigger

* lint
  • Loading branch information
anakin87 authored Oct 29, 2024
1 parent f26c6b1 commit fbeeac7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ on:
- synchronize
- ready_for_review
paths:
# Keep the list in sync with the paths defined in the `tests_skipper.yml` workflow
- "haystack_experimental/**/*.py"
- "test/**/*.py"
- "pyproject.toml"
- ".github/workflows/tests.yml"

env:
PYTHON_VERSION: "3.8"
PYTHON_VERSION: "3.9"
HATCH_VERSION: "1.13.0"
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
Expand Down
2 changes: 1 addition & 1 deletion haystack_experimental/components/tools/openapi/_openapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def __init__(
request_sender: Optional[Callable[[Dict[str, Any]], Dict[str, Any]]] = None,
llm_provider: LLMProvider = LLMProvider.OPENAI,
operations_filter: Optional[Callable[[Dict[str, Any]], bool]] = None,
): # noqa: PLR0913
): # noqa: PLR0913 # pylint: disable=too-many-positional-arguments
"""
Initialize a ClientConfiguration instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(
spec: Optional[Union[str, Path]] = None,
credentials: Optional[Secret] = None,
allowed_operations: Optional[List[str]] = None,
):
): # pylint: disable=too-many-positional-arguments
"""
Initialize the OpenAPITool component.
Expand Down

0 comments on commit fbeeac7

Please sign in to comment.