Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 11b4249

Browse files
committed
bump to 3.14
1 parent 730ce04 commit 11b4249

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/build-app-wxpython.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,37 +25,37 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: '3.13'
28+
python-version: '3.14'
2929
- name: Install Dependencies
3030
run: |
3131
rm -rf Univ*
3232
rm -rf *pay*.dmg
33-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 -m pip install -r requirements.txt
33+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -m pip install -r requirements.txt
3434
3535
- name: Force x86_64 charset for Python
3636
run: |
37-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 -m pip uninstall -y charset_normalizer
38-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 -m pip download --platform macosx_10_13_x86_64 --only-binary=:all: charset-normalizer
39-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 -m pip install charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl
37+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -m pip uninstall -y charset_normalizer
38+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -m pip download --platform macosx_10_13_x86_64 --only-binary=:all: charset-normalizer
39+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -m pip install charset_normalizer-3.4.4-cp314-cp314-macosx_10_13_universal2.whl
4040
4141
- name: Prepare Assets (--prepare-assets)
4242

4343
run: >
44-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 Build-Project.command
44+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 Build-Project.command
4545
--run-as-individual-steps
4646
--prepare-assets
4747
4848
- name: Prepare Application (--prepare-application)
4949
run: >
50-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 Build-Project.command
50+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 Build-Project.command
5151
--git-branch "${{ env.branch }}" --git-commit-url "${{ env.commiturl }}" --git-commit-date "${{ env.commitdate }}"
5252
--reset-pyinstaller-cache
5353
--run-as-individual-steps
5454
--prepare-application
5555
5656
- name: Prepare Package (--prepare-package)
5757
run: >
58-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 Build-Project.command
58+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 Build-Project.command
5959
--run-as-individual-steps
6060
--prepare-package
6161
- name: Upload AutoPkg Package to Artifacts

.github/workflows/validate.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.13'
19+
python-version: '3.14'
2020
- name: Validate
2121
run: |
22-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 -m pip install --upgrade pip
23-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 -m pip install -r requirements.txt
24-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 -m pip install packaging
25-
/Library/Frameworks/Python.framework/Versions/3.13/bin/python3 OCLP-R-GUI.command --validate
22+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -m pip install --upgrade pip
23+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -m pip install -r requirements.txt
24+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -m pip install packaging
25+
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 OCLP-R-GUI.command --validate
Binary file not shown.

ci_tooling/build_modules/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,6 @@ def generate(self) -> None:
197197
self._generate_application()
198198
self._remove_analytics_key()
199199
self._patch_load_command()
200-
self._patch_sdk_version() if not self._git_branch or not self._git_branch.startswith('refs/tags') else None
200+
#self._patch_sdk_version() if not self._git_branch or not self._git_branch.startswith('refs/tags') else None
201201
self._embed_git_data()
202202
self._embed_resources()

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ requests
22
pyobjc
33
colorama
44
termcolor
5-
wxpython @ https://wxpython.org/Phoenix/snapshot-builds/wxPython-4.2.2-cp313-cp313-macosx_10_13_universal2.whl
5+
wxpython @ https://wxpython.org/Phoenix/snapshot-builds/wxpython-4.2.45988+6573a469-cp314-cp314-macosx_10_15_x86_64.whl
66
pyinstaller
77
packaging
88
py_sip_xnu

0 commit comments

Comments
 (0)