dmart 1.4.19__py3-none-any.whl → 1.4.20__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.
- {dmart-1.4.19.dist-info → dmart-1.4.20.dist-info}/METADATA +1 -1
- {dmart-1.4.19.dist-info → dmart-1.4.20.dist-info}/RECORD +6 -6
- dmart.py +5 -1
- {dmart-1.4.19.dist-info → dmart-1.4.20.dist-info}/WHEEL +0 -0
- {dmart-1.4.19.dist-info → dmart-1.4.20.dist-info}/entry_points.txt +0 -0
- {dmart-1.4.19.dist-info → dmart-1.4.20.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
bundler.py,sha256=MDTUTVS0WL7gb-i1rDcS4i37KTqaW88TluL4L3rwjRw,1817
|
|
2
2
|
data_generator.py,sha256=CnE-VHEeX7-lAXtqCgbRqR9WHjTuOgeiZcviYrHAmho,2287
|
|
3
|
-
dmart.py,sha256=
|
|
3
|
+
dmart.py,sha256=mG4TCkITYoUajlHsPJ_BZUBMu2G8gxvB7bidYfKoSHA,24498
|
|
4
4
|
get_settings.py,sha256=Sbe2WCoiK398E7HY4SNLfDN_GmE8knR4M-YJWF31jcg,153
|
|
5
5
|
info.json,sha256=hXQWl19lfMkEj_zXdehGeKjiKGNJ7emY4S7d4pIqJ1E,123
|
|
6
6
|
main.py,sha256=KZGhIL6AnEm5ZAPy4IvhBDpzSTjuodilV7NafNOyhzM,19676
|
|
@@ -272,8 +272,8 @@ utils/ticket_sys_utils.py,sha256=9QAlW2iiy8KyxQRBDj_WmzS5kKb0aYJmGwd4qzmGVqo,700
|
|
|
272
272
|
utils/web_notifier.py,sha256=QM87VVid2grC5lK3NdS1yzz0z1wXljr4GChJOeK86W4,843
|
|
273
273
|
utils/templates/activation.html.j2,sha256=XAMKCdoqONoc4ZQucD0yV-Pg5DlHHASZrTVItNS-iBE,640
|
|
274
274
|
utils/templates/reminder.html.j2,sha256=aoS8bTs56q4hjAZKsb0jV9c-PIURBELuBOpT_qPZNVU,639
|
|
275
|
-
dmart-1.4.
|
|
276
|
-
dmart-1.4.
|
|
277
|
-
dmart-1.4.
|
|
278
|
-
dmart-1.4.
|
|
279
|
-
dmart-1.4.
|
|
275
|
+
dmart-1.4.20.dist-info/METADATA,sha256=MTGSY6tBlgUmFtLj4RP40CIZbMsFGbMGG2Jo41hv_hY,2149
|
|
276
|
+
dmart-1.4.20.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
277
|
+
dmart-1.4.20.dist-info/entry_points.txt,sha256=GjfoGh1bpxuU9HHGJzbtCFPNptHv9TryxHMN3uBSKpg,37
|
|
278
|
+
dmart-1.4.20.dist-info/top_level.txt,sha256=S-gfX1pLerapNXiHZ8lvPYoV7sgwSX2_NCZ6xfzDUHM,267
|
|
279
|
+
dmart-1.4.20.dist-info/RECORD,,
|
dmart.py
CHANGED
|
@@ -19,7 +19,9 @@ from hypercorn.config import Config
|
|
|
19
19
|
from hypercorn.run import run
|
|
20
20
|
|
|
21
21
|
try:
|
|
22
|
+
# Try to import alembic
|
|
22
23
|
import alembic
|
|
24
|
+
|
|
23
25
|
# Check if we are importing the local alembic directory which is likely a leftover
|
|
24
26
|
if hasattr(alembic, '__path__'):
|
|
25
27
|
local_alembic_path = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'alembic'))
|
|
@@ -31,7 +33,6 @@ try:
|
|
|
31
33
|
try:
|
|
32
34
|
shutil.rmtree(p)
|
|
33
35
|
# Force reload
|
|
34
|
-
import sys
|
|
35
36
|
if 'alembic' in sys.modules:
|
|
36
37
|
del sys.modules['alembic']
|
|
37
38
|
import alembic
|
|
@@ -584,6 +585,9 @@ def main():
|
|
|
584
585
|
print("Error: 'alembic' library not found. Please install it with 'pip install alembic'.")
|
|
585
586
|
if ALEMBIC_ERROR:
|
|
586
587
|
print(f"Details: {ALEMBIC_ERROR}")
|
|
588
|
+
import sys
|
|
589
|
+
print(f"Python executable: {sys.executable}")
|
|
590
|
+
print(f"sys.path: {sys.path}")
|
|
587
591
|
sys.exit(1)
|
|
588
592
|
|
|
589
593
|
alembic_cfg = AlembicConfig(str(original_ini_path))
|
|
File without changes
|
|
File without changes
|
|
File without changes
|