We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6107aab commit a3e963aCopy full SHA for a3e963a
mkl_random/__init__.py
@@ -42,3 +42,4 @@
42
test = PytestTester(__name__)
43
del PytestTester
44
45
+del _init_helper
mkl_random/_init_helper.py
@@ -1,4 +1,4 @@
1
-# Copyright 2020-2024 Intel Corporation
+# Copyright 2025 Intel Corporation
2
#
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
# you may not use this file except in compliance with the License.
@@ -23,6 +23,7 @@
23
)
24
25
if is_venv_win32:
26
+ # In Windows venv: add Library/bin to PATH for proper DLL loading
27
dll_dir = os.path.join(sys.exec_prefix, "Library", "bin")
28
if os.path.isdir(dll_dir):
29
os.add_dll_directory(dll_dir)
0 commit comments