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 4086730 commit fecebbcCopy full SHA for fecebbc
1 file changed
openml/config.py
@@ -9,6 +9,7 @@
9
import os
10
import platform
11
import shutil
12
+import sys
13
import warnings
14
from collections.abc import Iterator
15
from contextlib import contextmanager
@@ -27,7 +28,10 @@
27
28
OPENML_SKIP_PARQUET_ENV_VAR = "OPENML_SKIP_PARQUET"
29
_TEST_SERVER_NORMAL_USER_KEY = "normaluser"
30
-TEST_SERVER_URL = "http://localhost:8000"
31
+if sys.platform.startswith("win"):
32
+ TEST_SERVER_URL = "http://localhost"
33
+else:
34
+ TEST_SERVER_URL = "http://localhost:8000"
35
36
37
class _Config(TypedDict):
0 commit comments