-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup: pin scipy to 1.11.4 in build recipe due to pyinstaller issue
- Loading branch information
1 parent
f852f1a
commit e463a10
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Any additional requirements for building the application | ||
pyinstaller | ||
pyinstaller | ||
scipy==1.11.4 # hat problems with pyinstaller (scipy.special._cdflib not found) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Any additional requirements for building the application | ||
# https://github.com/rpy2/rpy2/issues/796 | ||
pyinstaller | ||
rpy2==3.4.5 | ||
pyinstaller | ||
scipy==1.11.4 # hat problems with pyinstaller (scipy.special._cdflib not found) |