Skip to content

Commit 78df128

Browse files
committed
add 3.12 to classifiers
1 parent bdcb0e3 commit 78df128

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.9",
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
2324
"Topic :: Scientific/Engineering",
2425
"Topic :: System :: Distributed Computing",
2526
]

tests/integration/test_hive.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import shutil
2+
import sys
23
import tempfile
34
import time
45

@@ -9,7 +10,7 @@
910
from tests.utils import assert_eq
1011

1112
pytestmark = pytest.mark.xfail(
12-
condition="sys.platform in ('win32', 'darwin')",
13+
condition=sys.platform in ("win32", "darwin"),
1314
reason="hive testing not supported on Windows/macOS",
1415
)
1516
docker = pytest.importorskip("docker")

0 commit comments

Comments
 (0)