File tree Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22# git_verinfo.py - GSAS-II version info from git
33# Do not edit, generated by '../GSASII/install/incr-mini-version.py' script
4- # Created 2025-04-25 11:38:51.520928 -05:00
4+ # Created 2025-04-25 12:08:55.967171 -05:00
55
6- git_version = '81f8d0dc594a128dd4998b116adae76657190a6c '
6+ git_version = 'f41fd979e3bd50c706a44b281b52a5ed3dcb0013 '
77git_tags = []
88git_prevtaggedversion = 'dfc4cc57bfa3a65d8b086eac2dfcc470d4c95187'
99git_prevtags = ['5806' ]
10- git_versiontag = 'v5.3.2 '
10+ git_versiontag = 'v5.3.3 '
Original file line number Diff line number Diff line change 2222import cProfile ,pstats
2323import wx
2424import numpy as np
25- from . import GSASIIpath
25+ # path hack for restart, when needed
26+ import importlib .util
27+ try :
28+ importlib .util .find_spec ('GSASII.GSASIIGUI' )
29+ except ModuleNotFoundError :
30+ print ('GSAS-II not installed in Python; Hacking sys.path' )
31+ sys .path .insert (0 ,os .path .dirname (os .path .dirname (__file__ )))
32+ from GSASII import GSASIIpath
2633GSASIIpath .SetBinaryPath ()
27- from . import GSASIIstrMath as G2stMth
28- from . import GSASIItestplot as plot
29- from . import GSASIImapvars as G2mv
34+ from GSASII import GSASIIstrMath as G2stMth
35+ from GSASII import GSASIItestplot as plot
36+ from GSASII import GSASIImapvars as G2mv
3037try : # fails on doc build
3138 from . import pytexture as ptx
3239 ptx .pyqlmninit () #initialize fortran arrays for spherical harmonics
You can’t perform that action at this time.
0 commit comments