Skip to content

Commit 78bc13d

Browse files
committed
Update dependencies and example fix
1 parent 6e26a13 commit 78bc13d

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

DojoEnvironments/src/environments/cartpole_dqn.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function DojoEnvironments.state_map(::CartpoleDQN, state)
4444
return state
4545
end
4646

47-
function DojoEnvironments.input_map(::CartpoleDQN, input::AbstractVector)
47+
function DojoEnvironments.input_map(::CartpoleDQN, input::Real)
4848
input = [input;0] # only the cart is actuated
4949
return input
5050
end

Project.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ Colors = "<0.12.10, 0.12.10"
2828
CoordinateTransformations = "<0.6.3, 0.6.3"
2929
DocStringExtensions = "<0.9.3, 0.9.3"
3030
FFMPEG = "0.4.0, 0.4.1"
31-
FiniteDiff = "2.0, 2.21"
32-
GeometryBasics = "<0.4.9, 0.4.9"
31+
FiniteDiff = "2.0, 2.23"
32+
GeometryBasics = "<0.4.10, 0.4.10"
3333
GraphBasedSystems = "1.0, 1.2"
3434
LaTeXStrings = "1.3, 1.3"
3535
LightXML = "<0.9.0, 0.9.0"
36-
MeshCat = "<0.16.0, 0.16.0"
36+
MeshCat = "<0.16.0, 0.16.1"
3737
Meshing = "<0.6.0, 0.6.0"
3838
Polyhedra = "<0.7.6, 0.7.6"
39-
Quaternions = "0.5.2, 0.7.0, 0.7.4"
40-
StaticArrays = "1.2, 1.6"
41-
julia = "1.6, 1.9"
39+
Quaternions = "0.5.2, 0.7.0, 0.7.6"
40+
StaticArrays = "1.2, 1.9"
41+
julia = "1.6, 1.10"

examples/Project.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
1515
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1616

1717
[compat]
18-
ClosedIntervals = "<0.3.0, 0.3.0"
19-
ControlSystemsBase = "1.0, 1.8"
18+
ClosedIntervals = "<0.3.1, 0.3.1"
19+
ControlSystemsBase = "1.0, 1.10"
2020
Dojo = "<0.7.3, 0.7.3"
2121
DojoEnvironments = "<0.5.3, 0.5.3"
22-
Flux = "<0.13.14, 0.13.14"
22+
Flux = "<0.13.17, 0.13.17"
2323
ForwardDiff = "<0.10.36, 0.10.36"
24-
JLD2 = "<0.4.33, 0.4.33"
25-
Literate = "2.0, 2.14"
26-
Plots = "1.0, 1.38"
24+
JLD2 = "<0.4.46, 0.4.46"
25+
Literate = "2.0, 2.16"
26+
Plots = "1.0, 1.40"
2727
ReinforcementLearning = "0.10.0, 0.10.2"
28-
StableRNGs = "1.0, 1.0"
28+
StableRNGs = "1.0, 1.0"

test/Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1212
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1313

1414
[compat]
15-
BenchmarkTools = "<1.3, 1.3"
16-
FiniteDiff = "2.0, 2.21"
15+
BenchmarkTools = "<1.5, 1.5"
16+
FiniteDiff = "2.0, 2.23"
1717
ForwardDiff = "0.10.19, 0.10.36"
18-
Rotations = "1.3, 1.5"
18+
Rotations = "1.3, 1.5, 1.6, 1.7"
1919
SafeTestsets = "0.0.1, 0.0.1"
20-
StaticArrays = "1.2, 1.6"
20+
StaticArrays = "1.2, 1.6, 1.7, 1.8, 1.9"

0 commit comments

Comments
 (0)