pin required pyhon lib versions and use more curren pyinstaller

pull/446/head
Holger Müller 2021-10-10 14:33:25 +02:00
rodzic 7f161478d4
commit a3c9dea92f
5 zmienionych plików z 16 dodań i 13 usunięć

Wyświetl plik

@ -4,6 +4,7 @@ on:
push:
tags:
- v*
workflow_dispatch:
jobs:
release:
@ -19,7 +20,7 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools
pip install -r requirements.txt
pip install PyInstaller==4.3
pip install PyInstaller==4.5.1
- name: Build binary
run: |
pyinstaller --onefile -n nanovna-saver nanovna-saver.py

Wyświetl plik

@ -4,6 +4,7 @@ on:
push:
tags:
- v*
workflow_dispatch:
jobs:
release:
@ -19,7 +20,7 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools
pip install -r requirements.txt
pip install PyInstaller==4.3
pip install PyInstaller==4.5.1
- name: Build binary
run: |
pyinstaller --onefile -n nanovna-saver nanovna-saver.py

Wyświetl plik

@ -4,6 +4,7 @@ on:
push:
tags:
- v*
workflow_dispatch:
jobs:
release:
@ -23,7 +24,7 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools
pip install -r requirements.txt
pip install PyInstaller==4.3
pip install PyInstaller==4.5.1
- name: Build binary
run: |
pyinstaller --onefile -n nanovna-saver.exe nanovna-saver.py

Wyświetl plik

@ -1,5 +1,5 @@
scipy
cython
pyqt5
pyserial
numpy
pyserial==3.5
PyQt5==5.15.4
numpy==1.21.1
scipy==1.7.1
cython==0.29.24

Wyświetl plik

@ -15,11 +15,11 @@ version = attr: NanoVNASaver.About.VERSION
[options]
packages = find_namespace:
install_requires=
pyserial
PyQt5
numpy
scipy
cython
pyserial==3.5
PyQt5==5.15.4
numpy==1.21.1
scipy==1.7.1
cython==0.29.24
python_requires = >=3.8, <4
[options.entry_points]