Loading pyproject.toml +1 −1 Original line number Diff line number Diff line Loading @@ -29,7 +29,7 @@ numpy = ["numpy1", "numpy2"] [tool.hatch.envs.test.overrides] matrix.python.dependencies = [ { value = "ray", if = ["3.9", "3.10", "3.11"] }, { value = "ray", if = ["3.9", "3.10", "3.11", "3.12"] }, ] matrix.gym.dependencies = [ { value = "gym", if = ["gym"] }, Loading test/test_mp_with_ray.py +1 −1 Original line number Diff line number Diff line Loading @@ -7,7 +7,7 @@ from cpprb import MPReplayBuffer, MPPrioritizedReplayBuffer import numpy as np @unittest.skipUnless((3, 8) <= sys.version_info < (3, 12), @unittest.skipUnless((3, 8) <= sys.version_info <= (3, 12), "Support Ray only for Python 3.8-3.11") class TestRay(unittest.TestCase): @classmethod Loading Loading
pyproject.toml +1 −1 Original line number Diff line number Diff line Loading @@ -29,7 +29,7 @@ numpy = ["numpy1", "numpy2"] [tool.hatch.envs.test.overrides] matrix.python.dependencies = [ { value = "ray", if = ["3.9", "3.10", "3.11"] }, { value = "ray", if = ["3.9", "3.10", "3.11", "3.12"] }, ] matrix.gym.dependencies = [ { value = "gym", if = ["gym"] }, Loading
test/test_mp_with_ray.py +1 −1 Original line number Diff line number Diff line Loading @@ -7,7 +7,7 @@ from cpprb import MPReplayBuffer, MPPrioritizedReplayBuffer import numpy as np @unittest.skipUnless((3, 8) <= sys.version_info < (3, 12), @unittest.skipUnless((3, 8) <= sys.version_info <= (3, 12), "Support Ray only for Python 3.8-3.11") class TestRay(unittest.TestCase): @classmethod Loading