jup
This commit is contained in:
@@ -115,7 +115,7 @@ package_data = {
|
||||
|
||||
data_files=[]
|
||||
|
||||
version_ns = {'__version__': '6.3.5', 'minor-version': '6', 'minor-version': '3', 'patch': '5'}
|
||||
version_ns = {'__version__': '${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION}.${YAP_PATCH_VERSION}', 'major-version': '${YAP_MAJOR_VERSION}', 'minor-version': '${YAP_MINOR_VERSION}', 'patch': '${YAP_PATCH_VERSION}'}
|
||||
|
||||
setup_args = dict(
|
||||
name=name,
|
||||
|
@@ -52,9 +52,12 @@ class JupyterEngine( Engine ):
|
||||
args.jupyter = True
|
||||
Engine.__init__(self, args)
|
||||
self.errors = None
|
||||
self.run(compile(library('jupyter')),"user")
|
||||
self.run(compile(library('complete')),"user")
|
||||
self.run(compile(library('verify')),"user")
|
||||
try:
|
||||
self.run(compile(library('jupyter')),"user")
|
||||
self.run(compile(library('complete')),"user")
|
||||
self.run(compile(library('verify')),"user")
|
||||
except:
|
||||
pass
|
||||
|
||||
class EngineArgs( YAPEngineArgs ):
|
||||
""" Interface to Engine Options class"""
|
||||
|
Reference in New Issue
Block a user