ipyvasp 0.9.94__tar.gz → 0.9.95__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.
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/PKG-INFO +2 -2
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/README.md +1 -1
- ipyvasp-0.9.95/ipyvasp/_version.py +1 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/widgets.py +8 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp.egg-info/PKG-INFO +2 -2
- ipyvasp-0.9.94/ipyvasp/_version.py +0 -1
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/LICENSE +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/__init__.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/__main__.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/_enplots.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/_lattice.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/bsdos.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/cli.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/core/__init__.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/core/parser.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/core/plot_toolkit.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/core/serializer.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/core/spatial_toolkit.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/evals_dataframe.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/lattice.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/misc.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/potential.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp/utils.py +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp.egg-info/SOURCES.txt +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp.egg-info/dependency_links.txt +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp.egg-info/entry_points.txt +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp.egg-info/requires.txt +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/ipyvasp.egg-info/top_level.txt +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/setup.cfg +0 -0
- {ipyvasp-0.9.94 → ipyvasp-0.9.95}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ipyvasp
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.95
|
|
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
|
|
@@ -76,5 +76,5 @@ Apply operations on POSCAR and simultaneously view using plotly's `FigureWidget`
|
|
|
76
76
|
|
|
77
77
|

|
|
78
78
|
|
|
79
|
-
|
|
79
|
+

|
|
80
80
|
More coming soon!
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.9.95"
|
|
@@ -595,6 +595,14 @@ class _ThemedFigureInteract(ei.InteractBase):
|
|
|
595
595
|
raise AttributeError("subclass must include already initialized "
|
|
596
596
|
"{'fig': self._fig,'theme':self._theme} in returned dict of _interactive_params() method.")
|
|
597
597
|
self._update_theme(self._fig,self._theme) # fix theme in starts
|
|
598
|
+
self.observe(self._autosize_figs, names = 'isfullscreen') # fix figurewidget problem
|
|
599
|
+
|
|
600
|
+
def _autosize_figs(self, change):
|
|
601
|
+
for w in self._all_widgets.values():
|
|
602
|
+
# don't know yet about these without importing
|
|
603
|
+
if re.search('plotly.*FigureWidget', str(type(w).__mro__)):
|
|
604
|
+
w.layout.autosize = False # Double trigger is important
|
|
605
|
+
w.layout.autosize = True
|
|
598
606
|
|
|
599
607
|
def _interactive_params(self): return {}
|
|
600
608
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ipyvasp
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.95
|
|
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
|
|
@@ -76,5 +76,5 @@ Apply operations on POSCAR and simultaneously view using plotly's `FigureWidget`
|
|
|
76
76
|
|
|
77
77
|

|
|
78
78
|
|
|
79
|
-
|
|
79
|
+

|
|
80
80
|
More coming soon!
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.9.94"
|
|
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
|
|
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
|