Skip to content

Commit 7d7fdbd

Browse files
Set PY_ARRAY_UNIQUE_SYMBOL, also update list of support CPython versions
1 parent 9a71f66 commit 7d7fdbd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
5050
Programming Language :: C
5151
Programming Language :: Python
5252
Programming Language :: Python :: 3
53-
Programming Language :: Python :: 3.7
54-
Programming Language :: Python :: 3.8
5553
Programming Language :: Python :: 3.9
5654
Programming Language :: Python :: 3.10
55+
Programming Language :: Python :: 3.11
56+
Programming Language :: Python :: 3.12
5757
Programming Language :: Python :: Implementation :: CPython
5858
Topic :: Software Development
5959
Topic :: Scientific/Engineering
@@ -95,7 +95,8 @@ def extensions():
9595

9696
defs = [('_FILE_OFFSET_BITS', '64'),
9797
('_LARGEFILE_SOURCE', '1'),
98-
('_LARGEFILE64_SOURCE', '1')]
98+
('_LARGEFILE64_SOURCE', '1'),
99+
("PY_ARRAY_UNIQUE_SYMBOL", "mkl_random_ext")]
99100

100101
exts = [
101102
Extension(

0 commit comments

Comments
 (0)