Skip to content

Commit

Permalink
fix: More review comments
Browse files Browse the repository at this point in the history
Signed-off-by: ggydush <[email protected]>
  • Loading branch information
ggydush committed Mar 27, 2024
1 parent ee8b489 commit a013aee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ dependencies = [
"s3fs>=2023.3.0,!=2024.3.1",
"statsd>=3.0.0,<4.0.0",
"typing_extensions",
"typing-inspect",
"urllib3>=1.22,<2.0.0",
]
classifiers = [
Expand Down
3 changes: 2 additions & 1 deletion tests/flytekit/unit/core/test_interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import sys
import typing
from typing import Dict, List

Expand Down Expand Up @@ -155,7 +156,7 @@ def t1() -> FlyteFile[typing.TypeVar("svg")]:
return_type = extract_return_annotation(typing.get_type_hints(t1).get("return", None))
assert return_type["o0"].extension() == FlyteFile[typing.TypeVar("svg")].extension()


@pytest.mark.skipif(sys.version_info < (3, 10), reason="PEP604 requires >=3.10.")
def test_parameters_and_defaults():
ctx = context_manager.FlyteContext.current_context()

Expand Down

0 comments on commit a013aee

Please sign in to comment.