Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
sage.repl.ipython_kernel.install: No longer symlink jsmol
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Dec 7, 2020
1 parent a0fe543 commit 6e24bc0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sage/repl/ipython_kernel/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ def use_local_jsmol(self):
sage: os.path.isfile(os.path.join(jsmol, "JSmol.min.js"))
True
"""
from sage.misc.superseded import deprecation
deprecation(30315, 'Symlinking jsmol is no longer necessary')
src = os.path.join(JSMOL_DIR)
dst = os.path.join(self.nbextensions_dir, 'jsmol')
self.symlink(src, dst)
Expand Down Expand Up @@ -275,7 +277,6 @@ def update(cls, *args, **kwds):
"""
instance = cls(*args, **kwds)
instance.use_local_mathjax()
instance.use_local_jsmol()
instance.use_local_threejs()
instance._install_spec()
instance._symlink_resources()
Expand Down

0 comments on commit 6e24bc0

Please sign in to comment.