diff options
| author | rejbasket <39080670+rejbasket@users.noreply.github.com> | 2023-06-20 17:07:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-20 17:07:15 +0200 |
| commit | 27d40d19b9b369a9fa411219dbb1e9ef9f473f79 (patch) | |
| tree | 19b249d85ccbdb02657bb84193760eb897fd5095 /.github/workflows | |
| parent | 92623d460d82f01c01353a5a5c992ec53baf7f41 (diff) | |
Windows numpy fix (#2377)
* added Gio and wx to hidden imports
changed numpy and scipy version for compatibility
* update versions numpy and scipy
---------
Co-authored-by: rejbasket <rejbasket@users.noreply.github.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 378c4c18..3d78875d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -110,8 +110,9 @@ jobs: git config --system core.longpaths true python -m pip install --upgrade pip python -m pip install wheel - # scipy 1.9.1 is the last version to support 32-bit windows - python -m pip install scipy==1.9.1 + # Numpy and Scipy version for older cpu compatibility + python -m pip install numpy==1.23.1 + python -m pip install scipy==1.9.0 python -m pip install -r requirements.txt python -m pip install pyinstaller |
