Skip to content

Commit 4aac129

Browse files
authored
Merge pull request #236 from illuin-tech/dependabot/github_actions/codecov/codecov-action-6
Bump codecov/codecov-action from 5 to 6
2 parents 7542abd + abd97e7 commit 4aac129

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
py.test --cov-report xml --cov-report term --cov=configue ./tests
2929
- name: Codecov
3030
if: matrix.python-version == '3.13'
31-
uses: codecov/codecov-action@v5
31+
uses: codecov/codecov-action@v6
3232
with:
3333
fail_ci_if_error: true
3434
token: ${{ secrets.CODECOV_TOKEN }}

configue/file_loader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def load(self, path: Union[str, List[str]]) -> Any:
5151
try:
5252
current_node = self._get_node_at_sub_path(sub_path, current_node)
5353
except InvalidNodeType:
54-
current_node = self._loader.construct_object( # type: ignore[no-untyped-call]
54+
current_node = self._loader.construct_object(
5555
current_node,
5656
deep=True,
5757
)
@@ -60,7 +60,7 @@ def load(self, path: Union[str, List[str]]) -> Any:
6060
current_node = self._get_element_at_sub_path(sub_path, current_node)
6161
if is_current_node_loaded:
6262
return current_node
63-
return self._loader.construct_object(current_node, deep=True) # type: ignore[no-untyped-call]
63+
return self._loader.construct_object(current_node, deep=True)
6464

6565
@staticmethod
6666
def _get_node_at_sub_path(sub_path: str, current_node: Node) -> Node:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "configue"
33
description = "Helpers to load your application configuration from YAML files"
44
authors = [{ name = "Illuin Technology", email = "contact@illuin.tech" }]
55
maintainers = [{ name = "Illuin Technology", email = "contact@illuin.tech" }]
6-
requires-python = ">=3.9"
6+
requires-python = ">=3.10"
77
readme = "README.md"
88
classifiers = [
99
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)