diff options
Diffstat (limited to 'numpy/random/setup.py')
-rw-r--r-- | numpy/random/setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py index f00373233..29f798180 100644 --- a/numpy/random/setup.py +++ b/numpy/random/setup.py @@ -85,8 +85,7 @@ def configuration(parent_package='', top_path=None): depends=['%s.pyx' % gen], define_macros=defs, ) - for gen in ['philox', 'threefry', 'xoshiro256', 'xoshiro512', - 'pcg64']: + for gen in ['philox', 'xoshiro256', 'xoshiro512', 'pcg64']: # gen.pyx, src/gen/gen.c _defs = defs + PCG64_DEFS if gen == 'pcg64' else defs config.add_extension(gen, |