From b3f816e5f5e56f5c8617c89fb57dab87a0fe1569 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20M=C3=BCller?= Date: Thu, 8 Sep 2022 08:52:31 +0200 Subject: [PATCH] updated libraries for binary builds --- .github/workflows/release_linux.yml | 4 ++-- .github/workflows/release_macos.yml | 4 ++-- .github/workflows/release_win.yml | 4 ++-- requirements.txt | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release_linux.yml b/.github/workflows/release_linux.yml index 91f4d49..b5b1d46 100644 --- a/.github/workflows/release_linux.yml +++ b/.github/workflows/release_linux.yml @@ -23,9 +23,9 @@ jobs: run: | python3.9 -m venv build . build/bin/activate - python -m pip install pip==22.1.2 setuptools==62.6.0 + python -m pip install pip==22.2.2 setuptools==65.3.0 pip install -r requirements.txt - pip install PyInstaller==5.1 + pip install PyInstaller==5.3 - name: Build binary run: | . build/bin/activate diff --git a/.github/workflows/release_macos.yml b/.github/workflows/release_macos.yml index ba11d4f..4cefcd9 100644 --- a/.github/workflows/release_macos.yml +++ b/.github/workflows/release_macos.yml @@ -18,9 +18,9 @@ jobs: python-version: 3.9 - name: Install dependencies and pyinstall run: | - python -m pip install pip==22.1.2 setuptools==62.6.0 + python -m pip install pip==22.2.2 setuptools==65.3.0 pip install -r requirements.txt - pip install PyInstaller=5.1 + pip install PyInstaller=5.3 - name: Build binary run: | pyinstaller --onefile -n nanovna-saver nanovna-saver.py diff --git a/.github/workflows/release_win.yml b/.github/workflows/release_win.yml index 8dcfacb..cd87834 100644 --- a/.github/workflows/release_win.yml +++ b/.github/workflows/release_win.yml @@ -22,9 +22,9 @@ jobs: architecture: ${{ matrix.arch }} - name: Install dependencies and pyinstall run: | - python -m pip install pip==22.1.2 setuptools==62.6.0 + python -m pip install pip==22.2.2 setuptools==65.3.0 pip install -r requirements.txt - pip install PyInstaller==5.1 + pip install PyInstaller==5.3 - name: Build binary run: | pyinstaller --onefile -n nanovna-saver.exe nanovna-saver.py diff --git a/requirements.txt b/requirements.txt index ed6c7d6..13e77d3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ pyserial==3.5 PyQt5==5.15.7 -numpy==1.23.0 -scipy==1.8.1 -Cython==0.29.30 +numpy==1.23.2 +scipy==1.9.1 +Cython==0.29.32