Skip to content
This repository was archived by the owner on Jun 15, 2024. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pyinstaller_gui_mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
# ref: master
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
- name: install tkinter
run: brew install python-tk@3.10
run: brew install python-tk@3.11
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this might not be needed because tkinter a native python library and am happy to remove it. It also doesn't hurt to have because it currently works and the GitHub workflow minutes for our repository is free since we are open-source code

- name: pip install dependencies
run: pip install -r requirements.txt
# pillow is needed for Mac because Mac needs to change the file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyinstaller_gui_ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# ref: master
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
- name: pip install dependencies
run: pip install -r requirements.txt
- name: compile GUI for ubuntu
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyinstaller_gui_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# ref: master
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
- name: pip install dependencies
run: pip install -r requirements.txt
- name: compile GUI for Windows
Expand Down