Skip to content

Commit a6778cf

Browse files
committed
Remove outdated skip & version mention
1 parent 8dbd2db commit a6778cf

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

docs/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Type Annotations
22

3-
*attrs* comes with first class support for type annotations for both Python 3.6 ({pep}`526`) and legacy syntax.
3+
*attrs* comes with first-class support for type annotations for both {pep}`526` and legacy syntax.
44

55
However they will forever remain *optional*, therefore the example from the README could also be written as:
66

tests/test_pyright.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,13 @@
44
import os.path
55
import shutil
66
import subprocess
7-
import sys
87

98
import pytest
109

1110
import attrs
1211

1312

1413
pytestmark = [
15-
pytest.mark.skipif(
16-
sys.version_info < (3, 7), reason="Requires Python 3.7+."
17-
),
1814
pytest.mark.skipif(
1915
shutil.which("pyright") is None, reason="Requires pyright."
2016
),

0 commit comments

Comments
 (0)