Commit 15d98602 authored by Yamada Hiroyuki's avatar Yamada Hiroyuki
Browse files

Merge branch 'Feature_ray'

parents 20eb5e1d a8a2022b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"] },
+1 −1
Original line number Diff line number Diff line
@@ -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