Skip to content

Commit 7c1996b

Browse files
committed
WIP
1 parent de6f65c commit 7c1996b

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on: [push]
88
# runs-on: ubuntu-latest
99
# strategy:
1010
# matrix:
11-
# python-version: ["3.10", "3.11"]
11+
# python-version: ["3.11", "3.12", "3.13"]
1212
# steps:
1313
# - uses: actions/checkout@v3
1414
# - name: Set up Python ${{ matrix.python-version }}
@@ -22,7 +22,7 @@ on: [push]
2222
# key: poetry-1.6.1
2323
# - uses: snok/install-poetry@v1
2424
# with:
25-
# version: 1.6.1
25+
# version: 1.8.1
2626
# virtualenvs-create: true
2727
# virtualenvs-in-project: true
2828
# installer-parallel: true
@@ -62,7 +62,7 @@ jobs:
6262
strategy:
6363
fail-fast: true
6464
matrix:
65-
python-version: [ "3.10", "3.11" ]
65+
python-version: [ "3.11", "3.12", "3.13" ]
6666
runs-on: ubuntu-latest
6767
steps:
6868
- name: Check out repository
@@ -75,7 +75,7 @@ jobs:
7575
- name: Install Poetry
7676
uses: snok/install-poetry@v1
7777
with:
78-
version: 1.6.1
78+
version: 1.8.1
7979
virtualenvs-create: true
8080
virtualenvs-in-project: true
8181
- name: Load cached venv

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ select = [
4747
ignore = [
4848
"C901", # "complexity" category
4949
"PLR", # "refactoring" category has "too many lines in method" type stuff
50-
"PLC1901",
5150
"PLE1205" # saw this Too many arguments for `logging` format string give a false positive once
5251
]
5352

src/spiffworkflow_proxy/plugin_service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def command_named(plugin_display_name: str, command_name: str) -> type[Connector
7676
return available_commands_by_plugin[plugin_name][command_name]
7777
except Exception:
7878
return None
79-
79+
8080
@staticmethod
8181
def modules_for_plugin_in_package(
8282
plugin: types.ModuleType, package_name: str | None

tests/mock_connectors/connector-example/src/connector_example/commands/combine_strings.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
from spiffworkflow_connector_command.command_interface import CommandResponseDict
55
from spiffworkflow_connector_command.command_interface import ConnectorCommand
6-
from spiffworkflow_connector_command.command_interface import ConnectorProxyResponseDict
76

87

98
class CombineStrings(ConnectorCommand):
@@ -22,7 +21,7 @@ def __init__(
2221

2322
def execute(self, config: Any, task_data: Any) -> CommandResponseDict:
2423
"""Execute."""
25-
24+
2625
return {
2726
"body": {
2827
"command_response": {

0 commit comments

Comments
 (0)