Skip to content

Commit 906ffb9

Browse files
committed
More fixes
1 parent d85b638 commit 906ffb9

4 files changed

Lines changed: 8 additions & 49 deletions

File tree

.coveragerc

Lines changed: 0 additions & 42 deletions
This file was deleted.

arch/meson.build

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,16 @@ inc_np = include_directories(incdir_numpy, is_system: true)
3131
# Needed to trick Cython, it won't do a relative import outside a package
3232
_cython_tree = [fs.copyfile('__init__.py')]
3333
cython_args = [
34-
'-Xcpow=True',
35-
'-Xboundscheck=False',
36-
'-Xwraparound=False',
37-
'-Xcdivision=True',
38-
'-Xbinding=True'
34+
'-X cpow=True',
35+
'-X boundscheck=False',
36+
'-X wraparound=False',
37+
'-X cdivision=True',
38+
'-X binding=True'
3939
]
4040
cython_c_args = ['-DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION']
4141
if get_option('cython-coverage')
42-
cython_args += ['-Xlinetrace=True']
42+
message('Building with Cython coverage support')
43+
cython_args += ['-X linetrace=True']
4344
cython_c_args += ['-DCYTHON_TRACE=1']
4445
endif
4546

arch/univariate/recursions.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!python
22

3-
43
import numpy as np
54

65
cimport numpy as np

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ seaborn
1717
pytest>=8.4.1,<9
1818
pytest-xdist
1919
pytest-cov
20+
pytest-randomly
2021

2122
# formatting
2223
black[jupyter]~=25.1.0

0 commit comments

Comments
 (0)