Skip to content

Commit 3855cc7

Browse files
authored
Merge pull request #21 from jdlangs/travis0.4
Travis0.4
2 parents 26d1324 + 9a77c17 commit 3855cc7

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
language: julia
22
julia:
3+
- 0.4
4+
- 0.5
35
- nightly
4-
- release
56
sudo: required
67
dist: trusty
78
before_install:

src/pubsub.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#API for publishing and subscribing to message topics
22
export Publisher, Subscriber, publish
33

4+
using Compat
5+
46
type Publisher{MsgType<:MsgT}
57
o::PyObject
68

@@ -28,7 +30,7 @@ type Subscriber{MsgType<:MsgT}
2830
@debug("Creating <$(string(MsgType))> subscriber on topic: '$topic'")
2931
rospycls = _get_rospy_class(MsgType)
3032

31-
cond = Base.AsyncCondition()
33+
cond = Compat.AsyncCondition()
3234
mqueue = _py_ros_callbacks["MessageQueue"](CB_NOTIFY_PTR, cond.handle)
3335
subobj = __rospy__[:Subscriber](ascii(topic), rospycls, mqueue["storemsg"]; kwargs...)
3436

src/services.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ type Service{SrvType <: ServiceDefinition}
4242
@debug("Providing <$SrvType> service at '$name'")
4343
rospycls = _get_rospy_class(SrvType)
4444

45-
cond = Base.AsyncCondition()
45+
cond = Compat.AsyncCondition()
4646
pysrv = _py_ros_callbacks["ServiceCallback"](CB_NOTIFY_PTR, cond.handle)
4747

4848
srvobj = try

0 commit comments

Comments
 (0)