Skip to content

Commit b7dde70

Browse files
Add workaround for numpy on Windows for python 3.9
1 parent 956f324 commit b7dde70

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ def install_for_development(self):
106106
epicscorelibs.version.abi_requires(),
107107
"pvxslibs>=1.3.2a2",
108108
"numpy",
109+
# Numpy PR #27235 was never backported to 2.0.*, so just fall back to numpy 1.*
110+
"numpy<2.0 ; sys_platform == 'win32' ; python_version == '3.9'"
109111
"epicsdbbuilder>=1.4",
110112
"pyyaml>=6.0"
111113
],

0 commit comments

Comments
 (0)