ipyvasp 1.1.6__py2.py3-none-any.whl → 1.1.7__py2.py3-none-any.whl
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/_enplots.py +2 -2
- ipyvasp/_version.py +1 -1
- ipyvasp/bsdos.py +1 -0
- ipyvasp/core/plot_toolkit.py +1 -1
- {ipyvasp-1.1.6.dist-info → ipyvasp-1.1.7.dist-info}/METADATA +1 -1
- {ipyvasp-1.1.6.dist-info → ipyvasp-1.1.7.dist-info}/RECORD +10 -10
- {ipyvasp-1.1.6.dist-info → ipyvasp-1.1.7.dist-info}/LICENSE +0 -0
- {ipyvasp-1.1.6.dist-info → ipyvasp-1.1.7.dist-info}/WHEEL +0 -0
- {ipyvasp-1.1.6.dist-info → ipyvasp-1.1.7.dist-info}/entry_points.txt +0 -0
- {ipyvasp-1.1.6.dist-info → ipyvasp-1.1.7.dist-info}/top_level.txt +0 -0
ipyvasp/_enplots.py
CHANGED
|
@@ -832,7 +832,7 @@ _hover_temp = { # keep order same
|
|
|
832
832
|
|
|
833
833
|
@gu._fmt_doc(_docs)
|
|
834
834
|
def iplot_bands(
|
|
835
|
-
K, E, occs = None, fig=None, elim=None, kticks=None, interp=None, title=None, **kwargs
|
|
835
|
+
K, E, occs = None, kpoints=None, fig=None, elim=None, kticks=None, interp=None, title=None, **kwargs
|
|
836
836
|
):
|
|
837
837
|
"""Plot band structure using plotly.
|
|
838
838
|
{params}\n {K}\n {E}
|
|
@@ -857,7 +857,7 @@ def iplot_bands(
|
|
|
857
857
|
["X"],
|
|
858
858
|
interp,
|
|
859
859
|
E if occs is None else occs,
|
|
860
|
-
np.array([K, K, K]).
|
|
860
|
+
np.array([K, K, K]).T if kpoints is None else kpoints, # for hover, use correct points
|
|
861
861
|
maxwidth=1,
|
|
862
862
|
indices=indices,
|
|
863
863
|
) # moking other arrays, we need only
|
ipyvasp/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.1.
|
|
1
|
+
__version__ = "1.1.7"
|
ipyvasp/bsdos.py
CHANGED
ipyvasp/core/plot_toolkit.py
CHANGED
|
@@ -260,7 +260,7 @@ def get_axes(
|
|
|
260
260
|
axs_dict[i] = ax
|
|
261
261
|
|
|
262
262
|
for key, ax in axs_dict.items():
|
|
263
|
-
if is_match(axes_off, key): ax.set_axis_off()
|
|
263
|
+
if axes_off is True or is_match(axes_off, key): ax.set_axis_off()
|
|
264
264
|
if ax.name == "3d": ax.view_init(elev=elev, azim=azim)
|
|
265
265
|
_monkey_patch(ax)
|
|
266
266
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
ipyvasp/__init__.py,sha256=pzTqeKuf6sN2GQmaexmMgG677ggT3sxIFyQDXq_2whU,1422
|
|
2
2
|
ipyvasp/__main__.py,sha256=eJV1TZSiT8mC_VqAeksNnBI2I8mKMiPkEIlwikbtOjI,216
|
|
3
|
-
ipyvasp/_enplots.py,sha256=
|
|
3
|
+
ipyvasp/_enplots.py,sha256=GwS73sw4v_wZPQcI5eo7_XZIITc3fYXHYNSZIjrtOBo,37935
|
|
4
4
|
ipyvasp/_lattice.py,sha256=LW20S2p_jx4bth5JedFnsvAvw6iWT1wLMmoi0Acsz2Y,108120
|
|
5
|
-
ipyvasp/_version.py,sha256=
|
|
6
|
-
ipyvasp/bsdos.py,sha256=
|
|
5
|
+
ipyvasp/_version.py,sha256=gbHQVWnpEE4n3qcJPMESiBPONAUCNTC9emVUmT2bcck,23
|
|
6
|
+
ipyvasp/bsdos.py,sha256=zafH7uzCdWiY0wZLNewUQrtESE8SBaQ-omXL96-yNv0,32229
|
|
7
7
|
ipyvasp/cli.py,sha256=-Lf-qdTvs7WyrA4ALNLaoqxMjLsZkXdPviyQps3ezqg,6880
|
|
8
8
|
ipyvasp/evals_dataframe.py,sha256=n2iSH4D4ZbrxlAV4yDTVHbcl3ycfD0zfQYmTBcxjfkE,20789
|
|
9
9
|
ipyvasp/lattice.py,sha256=NAe4cmXwkd6V0pRDTw1g5_CoNMfqOIT-NpyOSlSfyv0,33710
|
|
@@ -14,12 +14,12 @@ ipyvasp/utils.py,sha256=1eVDhYzK3dr0AC_CouWrU3xIhbVJu7AABscV-qi_vAA,18000
|
|
|
14
14
|
ipyvasp/widgets.py,sha256=Bpa4Y3Eopk_ZPFsVetfysClZP2q_2ONvmOwUol9vVGI,53154
|
|
15
15
|
ipyvasp/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
ipyvasp/core/parser.py,sha256=o-uHyL_w9W0pmxoSt3JmLwwmmT3WRHlHSs_NoiHO-hs,39401
|
|
17
|
-
ipyvasp/core/plot_toolkit.py,sha256=
|
|
17
|
+
ipyvasp/core/plot_toolkit.py,sha256=5S4OETfp3dz_862Rp4RcrvWxwqEWf-Z_YdwVY15fjkE,40950
|
|
18
18
|
ipyvasp/core/serializer.py,sha256=Rm1PQlE3NubDl61a4yT89o-8ZwWySbfMJo89L0lIB9o,42387
|
|
19
19
|
ipyvasp/core/spatial_toolkit.py,sha256=dXowREhiFzBvvr5f_bApzFhf8IzjH2E2Ix90oCBUetY,14885
|
|
20
|
-
ipyvasp-1.1.
|
|
21
|
-
ipyvasp-1.1.
|
|
22
|
-
ipyvasp-1.1.
|
|
23
|
-
ipyvasp-1.1.
|
|
24
|
-
ipyvasp-1.1.
|
|
25
|
-
ipyvasp-1.1.
|
|
20
|
+
ipyvasp-1.1.7.dist-info/LICENSE,sha256=F3SO5RiAZOMfmMGf1KOuk2g_c4ObvuBJhd9iBLDgXoQ,1263
|
|
21
|
+
ipyvasp-1.1.7.dist-info/METADATA,sha256=I9mV127lMaXAd2gv7AT3VfjHo7Wv13jaDD2x4d9hGGI,3218
|
|
22
|
+
ipyvasp-1.1.7.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
|
23
|
+
ipyvasp-1.1.7.dist-info/entry_points.txt,sha256=aU-gGjQG2Q8XfxDlNc_8__cwfp8WG2K5ZgFPInTm2jg,45
|
|
24
|
+
ipyvasp-1.1.7.dist-info/top_level.txt,sha256=ftziWlMWu_1VpDP1sRTFrkfBnWxAi393HYDVu4wRhUk,8
|
|
25
|
+
ipyvasp-1.1.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|