Skip to content

Commit

Permalink
fix(ver): downgrade to older python version
Browse files Browse the repository at this point in the history
  • Loading branch information
hahnec committed Mar 19, 2024
1 parent 72aafcf commit fe0149f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gh_actions.yml
Expand Up @@ -159,13 +159,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.9']
python-version: ['3.6.5']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: 3.6.5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions plenopticam/scripts/bundling/pyinst2app_gh.sh
Expand Up @@ -25,8 +25,8 @@ pyinstaller plenopticam/gui/top_level.py \
--exclude-module=matplotlib \
--osx-bundle-identifier='org.pythonmac.unspecified.plenopticam' \
--hidden-import pkg_resources.py2_warn \
--add-data='/usr/local/lib/libtk8.6.dylib':'library' \
--add-data='/usr/local/lib/libtcl8.6.dylib':'library' \
--add-binary='/usr/local/lib/libtk8.6.dylib':'tk' \
--add-binary='/usr/local/lib/libtcl8.6.dylib':'tcl' \
--add-data=plenopticam/cfg/cfg.json:cfg

# extract version number from python file
Expand Down

0 comments on commit fe0149f

Please sign in to comment.