File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed
Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 44
55- Copyright: (C) Qianqian Fang (2019-2025) <q.fang at neu.edu>
66- License: Apache License, Version 2.0
7- - Version: 0.8.0
7+ - Version: 0.8.1
88- URL: https://github.com/NeuroJSON/pyjdata
99- Acknowledgement: This project is supported by US National Institute of Health (NIH)
1010 grant [ U24-NS124027] ( https://reporter.nih.gov/project-details/10308329 )
Original file line number Diff line number Diff line change 121121
122122from .neurojson import neuroj , neurojgui
123123
124- __version__ = "0.8.0 "
124+ __version__ = "0.8.1 "
125125__all__ = [
126126 "loadjson" ,
127127 "savejson" ,
Original file line number Diff line number Diff line change @@ -284,10 +284,13 @@ class neurojgui:
284284 GUI class for NeuroJSON browser
285285 """
286286
287- import tkinter as tk
288- from tkinter import messagebox
289-
290287 def __init__ (self ):
288+ import tkinter as tk
289+ from tkinter import messagebox
290+
291+ self .tk = tk
292+ self .messagebox = messagebox
293+
291294 self .root = self .tk .Tk ()
292295 self .root .title ("NeuroJSON.io Dataset Browser" )
293296 self .root .geometry ("800x600" )
Original file line number Diff line number Diff line change 66setup (
77 name = "jdata" ,
88 packages = ["jdata" ],
9- version = "0.8.0 " ,
9+ version = "0.8.1 " ,
1010 license = "Apache license 2.0" ,
1111 description = "JSON/binary JSON formats for exchanging Python and Numpy data" ,
1212 long_description = readme ,
You can’t perform that action at this time.
0 commit comments