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 bdcb0e3 commit 78df128Copy full SHA for 78df128
pyproject.toml
@@ -20,6 +20,7 @@ classifiers = [
20
"Programming Language :: Python :: 3.9",
21
"Programming Language :: Python :: 3.10",
22
"Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
"Topic :: Scientific/Engineering",
25
"Topic :: System :: Distributed Computing",
26
]
tests/integration/test_hive.py
@@ -1,4 +1,5 @@
1
import shutil
2
+import sys
3
import tempfile
4
import time
5
@@ -9,7 +10,7 @@
9
10
from tests.utils import assert_eq
11
12
pytestmark = pytest.mark.xfail(
- condition="sys.platform in ('win32', 'darwin')",
13
+ condition=sys.platform in ("win32", "darwin"),
14
reason="hive testing not supported on Windows/macOS",
15
)
16
docker = pytest.importorskip("docker")
0 commit comments