8000 ENH: expose `bit_generator` and random C-API to cython by mattip · Pull Request #15463 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: expose bit_generator and random C-API to cython #15463

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Mar 16, 2020
Merged
Prev Previous commit
Next Next commit
TST: WindowsPath cannot be used in subprocess's list2cmdline
  • Loading branch information
mattip committed Feb 19, 2020
commit a230da93db61bcee082f7ea483b4d0cc3d27ebf7
4 changes: 2 additions & 2 deletions 8698 numpy/random/tests/test_extending.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ def test_cython(tmp_path):
# build the examples and "install" them into a temporary directory
env = os.environ.copy()
subprocess.check_call([sys.executable, 'setup.py', 'build', 'install',
'--prefix', tmp_path / 'installdir',
'--prefix', str(tmp_path / 'installdir'),
'--single-version-externally-managed',
'--record', tmp_path/ 'tmp_install_log.txt',
'--record', str(tmp_path/ 'tmp_install_log.txt'),
],
cwd=str(tmp_path / 'random' / '_examples' / 'cython'),
env=env)
Expand Down
0