Skip to content

Commit 76473a9

Browse files
committed
remove sandbox
Signed-off-by: Filinto Duran <[email protected]>
1 parent 12269e7 commit 76473a9

File tree

8 files changed

+47
-413
lines changed

8 files changed

+47
-413
lines changed

dev-requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ mypy>=1.2.0
22
mypy-extensions>=0.4.3
33
mypy-protobuf>=2.9
44
tox>=4.3.0
5+
pip>=23.0.0
56
coverage>=5.3
7+
pytest
68
wheel
79
# used in unit test only
810
opentelemetry-sdk

ext/dapr-ext-workflow/dapr/ext/workflow/aio/sandbox.py

Lines changed: 0 additions & 233 deletions
This file was deleted.

ext/dapr-ext-workflow/dapr/ext/workflow/workflow_runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def register_async_workflow(
374374
fn: Callable[[AsyncWorkflowContext, Any], Awaitable[Any]],
375375
*,
376376
name: Optional[str] = None,
377-
sandbox_mode: SandboxMode = SandboxMode.OFF,
377+
sandbox_mode: SandboxMode = SandboxMode.BEST_EFFORT,
378378
) -> None:
379379
"""Register an async workflow function.
380380

ext/dapr-ext-workflow/pytest.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[pytest]
2+
markers =
3+
e2e: marks tests as end-to-end integration tests (deselect with '-m "not e2e"')
4+

ext/dapr-ext-workflow/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ project_urls =
2020
Source = https://github.com/dapr/python-sdk
2121

2222
[options]
23-
python_requires = >=3.9
23+
python_requires = >=3.10
2424
packages = find_namespace:
2525
include_package_data = True
2626
install_requires =

0 commit comments

Comments
 (0)