Skip to content

Commit

Permalink
Pin protobuf version as it conflicts with ray
Browse files Browse the repository at this point in the history
This commit can be revert as soon as
ray-project/ray#25282 is fixed.

Fix issue #192.
  • Loading branch information
nhuet authored and galleon committed Jun 3, 2022
1 parent f30eb68 commit 8c3cff4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,13 @@ networkx = {version = "^2.5", optional = true}
minizinc = {version = "^0.4.2", optional = true}
mip = {version = "^1.13.0", optional = true}
deap = {version = "^1.3.1", optional = true}
protobuf = {version = "<4", optional = true}

[tool.poetry.extras]
domains = [ "gym", "numpy", "matplotlib", "simplejson" ]
solvers = [ "gym", "numpy", "joblib", "ray", "stable-baselines3" ]
solvers = [ "gym", "numpy", "joblib", "ray", "protobuf", "stable-baselines3" ]
discrete_optimization = [ "networkx", "minizinc", "mip", "deap" ]
all = [ "gym", "numpy", "matplotlib", "simplejson", "joblib", "ray", "stable-baselines3", "networkx", "minizinc", "mip", "deap" ]
all = [ "gym", "numpy", "matplotlib", "simplejson", "joblib", "ray", "protobuf", "stable-baselines3", "networkx", "minizinc", "mip", "deap" ]

[tool.poetry.plugins."skdecide.domains"]
GymDomain = "skdecide.hub.domain.gym:GymDomain [domains]"
Expand Down

0 comments on commit 8c3cff4

Please sign in to comment.