-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update python, pyside, pyinstaller, numpy, and gclib
- Loading branch information
1 parent
47a055d
commit 4b8b92a
Showing
19 changed files
with
31 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
py -3.11 -m PyInstaller gcft.spec | ||
py -3.12 -m PyInstaller gcft.spec | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
py -3.11 build.py | ||
py -3.12 build.py | ||
if %errorlevel% neq 0 exit /b %errorlevel% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/python3 | ||
|
||
import os | ||
import platform | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/python3.11 | ||
#!/usr/bin/python3 | ||
|
||
import os | ||
import sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/python3.11 | ||
#!/usr/bin/python3 | ||
|
||
import traceback | ||
from PySide6.QtGui import * | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
py #build_ui.py | ||
py -3.12 #build_ui.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
#!/usr/bin/python3.11 | ||
#!/usr/bin/python3 | ||
|
||
from subprocess import call | ||
import glob | ||
import os | ||
|
||
if not os.path.isdir("uic"): | ||
os.makedirs("uic") | ||
for input_path in glob.glob('*.ui'): | ||
base_name = os.path.splitext(input_path)[0] | ||
output_path = "uic/ui_%s.py" % base_name | ||
ui_dir = os.path.dirname(__file__) | ||
for input_path in glob.glob(glob.escape(ui_dir) + "/*.ui"): | ||
base_name = os.path.splitext(os.path.basename(input_path))[0] | ||
|
||
command = [ | ||
"pyside6-uic", | ||
input_path, | ||
"-o", output_path | ||
"-o", os.path.join(ui_dir, "uic", "ui_%s.py" % base_name) | ||
] | ||
result = call(command) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule gclib
updated
3 files
+25 −1 | gclib/jpa.py | |
+2 −1 | gclib/jpa_chunks/ssp1.py | |
+24 −6 | gclib/jpc.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
PySide6==6.5.2 | ||
PySide6~=6.6.0 | ||
PyYAML==6.0.1 | ||
Pillow==10.0.1 | ||
appdirs==1.4.4 | ||
-r ./gclib/requirements.txt | ||
numpy==1.25.2 | ||
numpy~=1.26.0 | ||
PyOpenGL>=3.1.0,<3.1.7 | ||
pyrr==0.10.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
PySide6==6.5.2 | ||
PySide6~=6.6.0 | ||
PyYAML==6.0.1 | ||
Pillow==10.0.1 | ||
appdirs==1.4.4 | ||
-r ./gclib/requirements_full.txt | ||
numpy==1.25.2 | ||
numpy~=1.26.0 | ||
PyOpenGL>=3.1.0,<3.1.7 | ||
pyrr==0.10.3 | ||
PyInstaller==5.13.0 | ||
PyInstaller~=6.2.0 |