-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from programlib import Program | ||
import gym | ||
import gymnasium as gym | ||
|
||
mountain_car_solver = """ | ||
while True: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import gym | ||
import gymnasium as gym | ||
import numpy as np | ||
|
||
def decode_action(action_space, action): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "programlib" | ||
version = "9.0.2" | ||
version = "9.0.3" | ||
description = "Programs as Objects" | ||
authors = ["Vadim Liventsev <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -14,7 +14,7 @@ classifiers = [ | |
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
pexpect = "^4.8.0" | ||
gym = "^0.26.2" | ||
gymnasium = " >=0.0.0" | ||
numpy = "^1.24.2" | ||
pyte = "^0.8.0" | ||
contextlib-chdir = {version = "^1.0.2", python = "<3.11"} | ||
|