Skip to content

Commit 9927ecf

Browse files
committed
Merge branch 'main' into 214-ui-sidebar-layout
2 parents 2afeb1c + 059aad5 commit 9927ecf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pytest
2-
pandas
2+
pandas<2.0.0
33
matplotlib
44
altair
55
pydantic

scripts/build_app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def build_macos(
4343

4444
logger.info(f"calling pyinstaller with options: {' '.join(options)}")
4545
subprocess.call(
46-
["pyinstaller", "app/Tuttle.py"] + options,
46+
["pyinstaller", "app/app.py"] + options,
4747
shell=False,
4848
)
4949

@@ -68,7 +68,7 @@ def build_linux(
6868

6969
logger.info(f"calling pyinstaller with options: {' '.join(options)}")
7070
subprocess.call(
71-
["pyinstaller", "app/Tuttle.py"] + options,
71+
["pyinstaller", "app/app.py"] + options,
7272
shell=False,
7373
)
7474

@@ -93,7 +93,7 @@ def build_windows(
9393

9494
logger.info(f"calling pyinstaller with options: {' '.join(options)}")
9595
subprocess.call(
96-
["pyinstaller", "app/Tuttle.py"] + options,
96+
["pyinstaller", "app/app.py"] + options,
9797
shell=False,
9898
)
9999

0 commit comments

Comments
 (0)