From 1c1ed6f03c3caaf944109ce8911a1c62af52f486 Mon Sep 17 00:00:00 2001 From: Seyon Sivarajah Date: Tue, 9 Apr 2024 09:38:13 +0100 Subject: [PATCH] chore: bump python version to 0.7.0 (#479) * driveby: delete commented out test * chore: bump python version to 0.7.0 --- tests/test_builder.py | 20 -------------------- tierkreis/_version.py | 2 +- 2 files changed, 1 insertion(+), 21 deletions(-) diff --git a/tests/test_builder.py b/tests/test_builder.py index 9e0380d..aaf54f6 100644 --- a/tests/test_builder.py +++ b/tests/test_builder.py @@ -630,26 +630,6 @@ def foo(arg: ValueSource) -> Output: assert f.retry_secs == 2 -# @pytest.mark.asyncio -# async def test_bad_annotations() -> None: -# # pyright does not support no_type_check decorator -# # so peppered with type: ignore -# with pytest.raises(TypeError, match="return type"): - -# @no_type_check -# @graph() # type: ignore -# def foo1(arg) -> int: -# return Output(out=arg) # type: ignore - - -# with pytest.raises(TypeError, match="Graph builder function arguments"): - -# @no_type_check -# @lazy_graph() -# def foo3(arg: float) : -# return Output(out=arg) # type: ignore - - @pytest.mark.skip_typecheck @pytest.mark.asyncio async def test_box_order(bi: Namespace, sig: Signature) -> None: diff --git a/tierkreis/_version.py b/tierkreis/_version.py index 43a1e95..49e0fc1 100644 --- a/tierkreis/_version.py +++ b/tierkreis/_version.py @@ -1 +1 @@ -__version__ = "0.5.3" +__version__ = "0.7.0"