mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-06 07:51:39 -05:00
Remove zmq dependency
This commit is contained in:
parent
c14977a754
commit
2ee94714cb
3 changed files with 5 additions and 17 deletions
16
Makefile
16
Makefile
|
@ -22,25 +22,13 @@ ifeq ($(CASK),)
|
|||
$(error "Install cask (https://github.com/cask/cask)")
|
||||
endif
|
||||
|
||||
# Build the zmq module.
|
||||
.PHONY: zmq
|
||||
ifneq ($(APPVEYOR),)
|
||||
# There are issues with string quoting in Appveyor which causes the normal
|
||||
# evaluated command to give a parsing error so we just make this a no-op in
|
||||
# Appveyor. The pre-built binaries are used when building in Appveyor anyways.
|
||||
zmq:
|
||||
else
|
||||
zmq: cask
|
||||
$(CASK) emacs -Q -batch --eval "(progn (fset 'read-string (lambda (&rest _) \"y\")) (require 'zmq))"
|
||||
endif
|
||||
|
||||
.PHONY: dev
|
||||
dev: cask
|
||||
$(CASK) install
|
||||
$(CASK) update
|
||||
|
||||
.PHONY: test
|
||||
test: zmq
|
||||
test:
|
||||
$(CASK) exec ert-runner --script $(TAGS) $(PATTERN)
|
||||
|
||||
.PHONY: clean
|
||||
|
@ -57,5 +45,5 @@ widgets:
|
|||
make -C js
|
||||
|
||||
.PHONY: compile
|
||||
compile: zmq
|
||||
compile:
|
||||
$(CASK) build
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
;; Author: Nathaniel Nicandro <nathanielnicandro@gmail.com>
|
||||
;; Created: 11 Jan 2018
|
||||
;; Version: 0.8.2
|
||||
;; Package-Requires: ((emacs "26") (zmq "0.10.3") (cl-lib "0.5") (simple-httpd "1.5.0") (websocket "1.9"))
|
||||
;; URL: https://github.com/dzop/emacs-jupyter
|
||||
;; Package-Requires: ((emacs "26") (cl-lib "0.5") (simple-httpd "1.5.0") (websocket "1.9"))
|
||||
;; URL: https://github.com/nnicandro/emacs-jupyter
|
||||
|
||||
;; This program is free software; you can redistribute it and/or
|
||||
;; modify it under the terms of the GNU General Public License as
|
||||
|
@ -36,6 +36,7 @@
|
|||
(require 'jupyter-base)
|
||||
(require 'jupyter-client)
|
||||
(require 'jupyter-kernelspec)
|
||||
(require 'jupyter-server)
|
||||
(require 'jupyter-repl)
|
||||
|
||||
(provide 'jupyter)
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
|
||||
;;; Code:
|
||||
|
||||
(require 'zmq)
|
||||
(require 'jupyter-env)
|
||||
(require 'jupyter-client)
|
||||
(require 'jupyter-repl)
|
||||
|
|
Loading…
Add table
Reference in a new issue