Skip to content

Commit 15d9860

Browse files
committed
Merge branch 'Feature_ray'
2 parents 20eb5e1 + a8a2022 commit 15d9860

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ numpy = ["numpy1", "numpy2"]
2929

3030
[tool.hatch.envs.test.overrides]
3131
matrix.python.dependencies = [
32-
{ value = "ray", if = ["3.9", "3.10", "3.11"] },
32+
{ value = "ray", if = ["3.9", "3.10", "3.11", "3.12"] },
3333
]
3434
matrix.gym.dependencies = [
3535
{ value = "gym", if = ["gym"] },

test/test_mp_with_ray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import numpy as np
88

99

10-
@unittest.skipUnless((3, 8) <= sys.version_info < (3, 12),
10+
@unittest.skipUnless((3, 8) <= sys.version_info <= (3, 12),
1111
"Support Ray only for Python 3.8-3.11")
1212
class TestRay(unittest.TestCase):
1313
@classmethod

0 commit comments

Comments
 (0)