Skip to content

Commit ead5c61

Browse files
authored
fix msvc-runtime dependency for windows
1 parent b6b6ecc commit ead5c61

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222
# if on windows, add msvc-runtime as dependency
2323
osused = platform.system()
2424
if osused == 'Windows':
25-
# msvc-runtime is still missing for python 3.12
26-
if sys.version_info[1] < 12:
27-
install_requires.append('msvc-runtime')
25+
install_requires.append('msvc-runtime')
2826

2927
try:
3028
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel

0 commit comments

Comments
 (0)