Merge pull request #1417 from wxWidgets/fix-numpy-requirement

Change the Python 2.7 requirement for numpy to be < 1.17, not ==1.16.1
This commit is contained in:
Robin Dunn
2019-10-29 11:27:41 -07:00
committed by GitHub

View File

@@ -1,5 +1,5 @@
# Runtime dependencies needed when using wxPython Phoenix
numpy==1.16.1 ; python_version <= '2.7'
numpy < 1.17 ; python_version <= '2.7'
numpy ; python_version >= '3.0'
pillow
six