Modified deps/workflows

- setup.cfg should now work flowlessly with fedoro 36 (#456)
 - github actions are updated to use more current software versions
pull/465/head
Holger Müller 2022-01-10 16:49:25 +01:00
rodzic c9ccaffa41
commit 8208563ff3
5 zmienionych plików z 18 dodań i 18 usunięć

Wyświetl plik

@ -15,12 +15,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.10
- name: Install dependencies and pyinstall
run: |
python -m pip install --upgrade pip setuptools
python -m pip install pip==21.3.1 setuptools==60.5.0
pip install -r requirements.txt
pip install PyInstaller==4.5.1
pip install PyInstaller==4.8
- name: Build binary
run: |
pyinstaller --onefile -n nanovna-saver nanovna-saver.py

Wyświetl plik

@ -15,12 +15,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.10
- name: Install dependencies and pyinstall
run: |
python -m pip install --upgrade pip setuptools
python -m pip install pip==21.3.1 setuptools==60.5.0
pip install -r requirements.txt
pip install PyInstaller==4.5.1
pip install PyInstaller==4.8
- name: Build binary
run: |
pyinstaller --onefile -n nanovna-saver nanovna-saver.py

Wyświetl plik

@ -18,13 +18,13 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.10
architecture: ${{ matrix.arch }}
- name: Install dependencies and pyinstall
run: |
python -m pip install --upgrade pip setuptools
python -m pip install pip==21.3.1 setuptools==60.5.0
pip install -r requirements.txt
pip install PyInstaller==4.7
pip install PyInstaller==4.8
- name: Build binary
run: |
pyinstaller --onefile -n nanovna-saver.exe nanovna-saver.py

Wyświetl plik

@ -1,5 +1,5 @@
pyserial==3.5
PyQt5==5.15.4
numpy==1.21.1
scipy==1.7.1
cython==0.29.24
PyQt5==5.15.6
numpy==1.22.0
scipy==1.7.3
Cython==0.29.26

Wyświetl plik

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