Skip to content

Commit

Permalink
Merge pull request #69 from ferrolho/hf/develop
Browse files Browse the repository at this point in the history
Bump compat for ColorTypes, Interpolations, and MeshCat
  • Loading branch information
rdeits authored May 21, 2023
2 parents ef07956 + cb5ab72 commit 6a24694
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
11 changes: 4 additions & 7 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,25 @@ Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
LoopThrottle = "39f5be34-8529-5463-bac7-bf6867c840a3"
MechanismGeometries = "931e9471-e8fb-5385-a477-07ad12718aca"
MeshCat = "283c5d60-a78f-5afe-a0af-af636b173e11"
Mux = "a975b10e-0019-58db-a62f-e48ff68538c9"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
RigidBodyDynamics = "366cf18f-59d5-5db9-a4de-86a9f6786172"

[compat]
ColorTypes = "0.7, 0.8, 0.9, 0.10"
ColorTypes = "0.7, 0.8, 0.9, 0.10, 0.11"
CoordinateTransformations = "0.5, 0.6"
GeometryBasics = "0.2, 0.3, 0.4"
InteractBase = "0.8, 0.9, 0.10"
Interpolations = "0.9, 0.10, 0.11, 0.12, 0.13"
Interpolations = "0.9, 0.10, 0.11, 0.12, 0.13, 0.14"
LoopThrottle = "0.1"
MechanismGeometries = "0.7"
MeshCat = "0.13, 0.14"
Mux = "0.7.1"
MeshCat = "0.13, 0.14, 0.15"
NBInclude = "1, 2"
OrderedCollections = "1"
RigidBodyDynamics = "2"
ValkyrieRobot = "0.2.1"
julia = "1.3"

[extras]
Blink = "ad839575-38b3-5650-b840-f874b8c74a25"
NBInclude = "0db19996-df87-5ea3-a455-e3a50d440464"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Expand All @@ -41,4 +38,4 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
ValkyrieRobot = "c74b26e8-f247-5d24-b013-c11a2bbd97c6"

[targets]
test = ["StaticArrays", "Pkg", "NBInclude", "Test", "Blink", "ValkyrieRobot", "Random"]
test = ["StaticArrays", "Pkg", "NBInclude", "Test", "ValkyrieRobot", "Random"]
10 changes: 4 additions & 6 deletions examples/manipulation_with_blink.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@
using MeshCatMechanisms
using RigidBodyDynamics

# Blink provides the standalone window we'll use to display
# Electron provides the standalone window we'll use to display
# the visualizer and controls
using Blink
# Install the Blink.AtomShell if it isn't already installed
AtomShell.isinstalled() || AtomShell.install()
import Electron

# Create a random mechanism and its associated visualizer

Expand All @@ -28,7 +26,7 @@ mvis = MechanismVisualizer(mechanism, Skeleton(randomize_colors=true))
# We don't open windows when we're running this test
# on the Travis CI build servers
if !haskey(ENV, "CI")
open(mvis, Window())
open(mvis, Electron.Application())
end

# Create sliders to manipulate the visualizer's configuration
Expand All @@ -39,5 +37,5 @@ widget = manipulate!(mvis)
# We don't open windows when we're running this test
# on the Travis CI build servers
if !haskey(ENV, "CI")
body!(Window(), widget)
body!(Electron.Application(), widget)
end
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ vis = Visualizer()
for file in readdir(dir)
base, ext = splitext(file)
if ext == ".jl"
if file == "manipulation_with_blink.jl"
if file == "manipulation_with_electron.jl"
# The interaction between MeshCat and Interact
# causes weird task deadlocks that I don't want
# to deal with right now.
Expand Down

0 comments on commit 6a24694

Please sign in to comment.