We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47897c4 commit ae0289cCopy full SHA for ae0289c
tests/test_versions.py
@@ -11,7 +11,7 @@
11
from domdf_python_tools.versions import Version, _iter_float, _iter_string, _prep_for_eq
12
13
pytestmark = pytest.mark.skipif(
14
- condition=sys.version_info <= (3, 6, 1) and platform.python_implementation() == "PyPy",
+ condition=sys.version_info[:3] <= (3, 6, 1) and platform.python_implementation() == "PyPy",
15
reason="Strange bug in PyPy 7.1.1/3.6.1 on Travis when subclassing from Tuple[int, int, int]"
16
)
17
0 commit comments