Skip to content

Commit

Permalink
all latest, no strip
Browse files Browse the repository at this point in the history
  • Loading branch information
PJDude committed Jan 12, 2025
1 parent 59d7cf2 commit 74c7032
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: python setup
uses: actions/setup-python@v5
with:
python-version: "3.12.3"
python-version: "3.13"
cache: 'pip'
check-latest: true

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
# - name: python setup
# uses: actions/setup-python@v5
# with:
# python-version: "3.12.3"
# python-version: "3.13"
# cache: 'pip'
# check-latest: true
#
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
# - name: python setup
# uses: actions/setup-python@v5
# with:
# python-version: "3.12.3"
# python-version: "3.13"
# cache: 'pip'
# check-latest: true
#
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
- name: python setup
uses: actions/setup-python@v5
with:
python-version: "3.12.3"
python-version: "3.13"
cache: 'pip'
check-latest: true

Expand All @@ -186,6 +186,8 @@ jobs:

#- name: strip python binaries
# run: find $pythonLocation -name *.so* -type f -exec strip {} \;
# problems :
#ImportError: libscipy_openblas-68440149.so: ELF load command address/offset not properly aligned

#####################################
- name: version download
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
pyinstaller==6.11.1
appdirs==1.4.4
send2trash==1.8.3
zstandard==0.22.0
tkinterdnd2==0.3.0
numpy==1.26
zstandard==0.23.0
tkinterdnd2==0.4.2
numpy==2.2.1
scipy==1.15.1
exifread==3.0.0
imagehash==4.3.1
pillow==10.3.0
scikit-learn==1.5.0
pillow==11.1.0
scikit-learn==1.6.1
2 changes: 1 addition & 1 deletion scripts/pyinstaller.run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ echo "pillow " `python3 -c "import PIL; print(PIL.__version__)"` >> distro.

echo ''
echo running-pyinstaller-stage_dude
pyinstaller --strip --noconfirm --noconsole --clean --add-data="distro.info.txt:." --add-data="version.txt:." --add-data="../LICENSE:." --contents-directory=internal --distpath=$outdir --additional-hooks-dir=. --collect-binaries tkinterdnd2 --collect-binaries numpy --collect-binaries scipy --collect-data scipy --hidden-import='PIL._tkinter_finder' --optimize 2 ./dude.py
pyinstaller --noconfirm --noconsole --clean --add-data="distro.info.txt:." --add-data="version.txt:." --add-data="../LICENSE:." --contents-directory=internal --distpath=$outdir --additional-hooks-dir=. --collect-binaries tkinterdnd2 --collect-binaries numpy --collect-binaries scipy --collect-data scipy --hidden-import='PIL._tkinter_finder' --optimize 2 ./dude.py

echo ''
echo packing
Expand Down

0 comments on commit 74c7032

Please sign in to comment.