Skip to content

Commit a27875f

Browse files
committed
Removed legacy_implicit_noexcept flag from cython arguments as noexcept has been added where required.
1 parent 384b0f5 commit a27875f

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

dev/root-meson.build

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ py = import('python').find_installation(pure: false)
1010
numpy = dependency('numpy', method: 'config-tool')
1111
fs = import('fs')
1212

13-
# disabling explicit noexcept until pycharm fixes their cython 3 support (causes a large number of build warnings)
14-
cython_args = ['--annotate', '-X legacy_implicit_noexcept=True']
13+
cython_args = ['--annotate']
1514
cython_dependencies = [numpy]

meson.build

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ py = import('python').find_installation(pure: false)
1313
numpy = dependency('numpy', method: 'config-tool')
1414
fs = import('fs')
1515

16-
# disabling explicit noexcept until pycharm fixes their cython 3 support (causes a large number of build warnings)
17-
cython_args = ['--annotate', '-X legacy_implicit_noexcept=True']
16+
cython_args = ['--annotate']
1817
cython_dependencies = [numpy]
1918

2019
subdir('raysect')

0 commit comments

Comments
 (0)