ipyvasp 1.0.5__tar.gz → 1.0.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/PKG-INFO +1 -1
  2. ipyvasp-1.0.6/ipyvasp/_version.py +1 -0
  3. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/widgets.py +4 -4
  4. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp.egg-info/PKG-INFO +1 -1
  5. ipyvasp-1.0.5/ipyvasp/_version.py +0 -1
  6. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/LICENSE +0 -0
  7. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/README.md +0 -0
  8. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/__init__.py +0 -0
  9. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/__main__.py +0 -0
  10. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/_enplots.py +0 -0
  11. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/_lattice.py +0 -0
  12. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/bsdos.py +0 -0
  13. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/cli.py +0 -0
  14. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/core/__init__.py +0 -0
  15. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/core/parser.py +0 -0
  16. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/core/plot_toolkit.py +0 -0
  17. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/core/serializer.py +0 -0
  18. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/core/spatial_toolkit.py +0 -0
  19. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/evals_dataframe.py +0 -0
  20. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/lattice.py +0 -0
  21. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/misc.py +0 -0
  22. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/potential.py +0 -0
  23. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp/utils.py +0 -0
  24. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp.egg-info/SOURCES.txt +0 -0
  25. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp.egg-info/dependency_links.txt +0 -0
  26. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp.egg-info/entry_points.txt +0 -0
  27. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp.egg-info/requires.txt +0 -0
  28. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/ipyvasp.egg-info/top_level.txt +0 -0
  29. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/setup.cfg +0 -0
  30. {ipyvasp-1.0.5 → ipyvasp-1.0.6}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ipyvasp
3
- Version: 1.0.5
3
+ Version: 1.0.6
4
4
  Summary: A processing tool for VASP DFT input/output processing in Jupyter Notebook.
5
5
  Home-page: https://github.com/massgh/ipyvasp
6
6
  Author: Abdul Saboor
@@ -0,0 +1 @@
1
+ __version__ = "1.0.6"
@@ -242,7 +242,7 @@ class Files:
242
242
  return tuple(np.unique(np.hstack(files_tuples)))
243
243
 
244
244
  @_sub_doc(dl.interactive)
245
- def interactive(self, *funcs, auto_update=True, post_init:callable=None,**kwargs):
245
+ def interactive(self, *funcs, post_init:callable=None,**kwargs):
246
246
  if 'file' in kwargs:
247
247
  raise KeyError("file is a reserved keyword argument to select path to file!")
248
248
 
@@ -259,13 +259,13 @@ class Files:
259
259
  if funcs and not has_file_param: # may be no func yet, that is test below
260
260
  raise KeyError("At least one of funcs should take 'file' as parameter, none got it!")
261
261
 
262
- return dl.interactive(*funcs,auto_update=auto_update, post_init=post_init, file = self.to_dropdown(), **kwargs)
262
+ return dl.interactive(*funcs, post_init=post_init, file = self.to_dropdown(), **kwargs)
263
263
 
264
264
  @_sub_doc(dl.interact)
265
- def interact(self, *funcs, auto_update=True, post_init:callable=None,**kwargs):
265
+ def interact(self, *funcs, post_init:callable=None,**kwargs):
266
266
  def inner(func):
267
267
  display(self.interactive(func, *funcs,
268
- auto_update=auto_update, post_init=post_init,
268
+ post_init=post_init,
269
269
  **kwargs)
270
270
  )
271
271
  return func
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ipyvasp
3
- Version: 1.0.5
3
+ Version: 1.0.6
4
4
  Summary: A processing tool for VASP DFT input/output processing in Jupyter Notebook.
5
5
  Home-page: https://github.com/massgh/ipyvasp
6
6
  Author: Abdul Saboor
@@ -1 +0,0 @@
1
- __version__ = "1.0.5"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes