Skip to content

Commit

Permalink
update dependencies and template
Browse files Browse the repository at this point in the history
  • Loading branch information
seebi committed Jul 18, 2024
1 parent 23ea4e5 commit 5dfe910
Show file tree
Hide file tree
Showing 9 changed files with 275 additions and 258 deletions.
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: v6.2.0
_commit: v6.3.1
_src_path: gh:eccenca/cmem-plugin-template
author_mail: cmempy-developer@eccenca.com
author_name: eccenca GmbH
Expand Down
3 changes: 2 additions & 1 deletion Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ tasks:
cmds:
# ignore 51358 safety - dev dependency only
# ignore 67599 pip - dev dependency only
- poetry run safety check -i 51358 -i 67599
# ignore 70612 jinja2 - dev dependency only
- poetry run safety check -i 51358 -i 67599 -i 70612

check:ruff:
desc: Complain about everything else
Expand Down
1 change: 1 addition & 0 deletions cmem_plugin_loopwf/task.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Random values workflow plugin module"""

import json
from collections.abc import Sequence
from pathlib import Path
Expand Down
1 change: 1 addition & 0 deletions cmem_plugin_loopwf/workflow_type.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""DI Workflow Parameter Type."""

from __future__ import annotations

from typing import TYPE_CHECKING, Any
Expand Down
521 changes: 266 additions & 255 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pytest-cov = "^4.1.0"
pytest-dotenv = "^0.5.2"
pytest-html = "^4.1.1"
pytest-memray = { version = "^1.6.0", markers = "platform_system != 'Windows'" }
ruff = "^0.1.15"
ruff = "^0.4.4"
safety = "^1.10.3"
cmem-cmemc = "^24.1.1"

Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""pytest configuration."""

import json
from collections.abc import Generator
from dataclasses import dataclass
Expand Down
1 change: 1 addition & 0 deletions tests/test_discovery.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test discover plugin"""

from cmem_plugin_base.dataintegration.discovery import discover_plugins


Expand Down
1 change: 1 addition & 0 deletions tests/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Testing utilities."""

import os
from typing import ClassVar

Expand Down

0 comments on commit 5dfe910

Please sign in to comment.