Skip to content

Commit 9c54231

Browse files
committed
Update version specifier to be more specific.
1 parent d9e9e3f commit 9c54231

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

tests/issue_85_module.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ def forwardref_method(foo: "ForwardRef", bar: str) -> "ForwardRef":
33

44

55
class ForwardRef:
6-
x: str
76
def __init__(self, x="default"):
87
self.x = x

tests/test_issues.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def test_issue_77_async_generator_partial():
255255

256256

257257

258-
@pytest.mark.skipif(sys.version_info < (3, 3), reason="Tests PEP 367 behavior, which was introduced in python 3.3.")
258+
@pytest.mark.skipif(sys.version_info < (3, 7, 6), reason="The __wrapped__ behavior in get_type_hints being tested was not added until python 3.7.6.")
259259
def test_issue_85_wrapped_forwardref_annotation():
260260
import typing
261261
from . import issue_85_module

0 commit comments

Comments
 (0)