Skip to content

Commit

Permalink
Merge pull request #1624 from phargogh/bugfix/1622-autotest-failing-o…
Browse files Browse the repository at this point in the history
…n-main

Avoid pyinstaller multiprocessing issues by capping `pyinstaller<6.10`
  • Loading branch information
davemfish authored Sep 10, 2024
2 parents c056170 + 948806c commit cef709f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions constraints_tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ GDAL!=3.6.*,!=3.7.*

# https://github.com/natcap/pygeoprocessing/issues/387
GDAL<3.8.5

# Pyinstaller 6.10 breaks our windows builds. Until we can figure out the
# root cause, let's cap the versions to those that work.
# https://github.com/natcap/invest/issues/1622
pyinstaller<6.10
4 changes: 3 additions & 1 deletion exe/invest.spec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ kwargs = {
'pkg_resources.py2_warn',
'cmath',
'charset_normalizer',
'scipy.special._cdflib'
'scipy.special._cdflib',
'scipy.special._special_ufuncs',
'scipy._lib.array_api_compat.numpy.fft',
],
'datas': [proj_datas],
'cipher': block_cipher,
Expand Down

0 comments on commit cef709f

Please sign in to comment.