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 dc2b587 commit ffad00dCopy full SHA for ffad00d
sklearn/tests/test_min_dependencies_readme.py
@@ -3,6 +3,7 @@
3
4
import os
5
import re
6
+import platform
7
from pathlib import Path
8
9
import pytest
@@ -16,6 +17,9 @@ def test_min_dependencies_readme():
16
17
# consistent with the minimum dependencies defined at the file:
18
# sklearn/_min_dependencies.py
19
20
+ if platform.python_implementation() == "PyPy":
21
+ pytest.skip("PyPy does not always share the same minimum deps")
22
+
23
pattern = re.compile(
24
r"(\.\. \|)"
25
+ r"(([A-Za-z]+\-?)+)"
0 commit comments