Skip to content

Commit

Permalink
Avoid numpy 1.24 because of GPy using deprecated API
Browse files Browse the repository at this point in the history
  • Loading branch information
apaleyes committed Apr 21, 2023
1 parent 4afa4ba commit 8bd7d8d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
setuptools>=40.8.0
numpy>=1.14.5
# numpy deprecated np.bool in 1.24, and it is still used in GPy
# until GPy is updated we need to avoid 1.24 or higher
numpy>=1.14.5,<1.24
# This is unfortunate - we don't need matplotlib
# but until GPy and GPyOpt get their dependencies straight
# we need GPy's plotting extra to ensure smooth installation
Expand Down

0 comments on commit 8bd7d8d

Please sign in to comment.