Skip to content

Commit

Permalink
Guarantee zmq-core has been loaded
Browse files Browse the repository at this point in the history
Requiring `zmq` no longer loads it in >= v1.0.1

* jupyter-ioloop.el: Call `zmq-load` at top level

* jupyter-zmq-channel.el: Ditto.
  • Loading branch information
nnicandro committed Jul 16, 2024
1 parent cd7988f commit f97f4b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions jupyter-ioloop.el
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@

(require 'jupyter-base)
(require 'zmq)
(eval-and-compile (zmq-load))
(eval-when-compile (require 'subr-x))

(defvar jupyter-ioloop-poller nil
Expand Down
1 change: 1 addition & 0 deletions jupyter-zmq-channel.el
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

(require 'jupyter-messages)
(require 'zmq)
(eval-and-compile (zmq-load))
(require 'jupyter-channel)
(eval-when-compile (require 'subr-x))

Expand Down

0 comments on commit f97f4b5

Please sign in to comment.