Skip to content

Commit ed191fc

Browse files
committed
Specify that dtypes are not pure python in meson config
1 parent 7edf3e0 commit ed191fc

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

asciidtype/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ py.install_sources(
3535
'asciidtype/__init__.py',
3636
'asciidtype/scalar.py'
3737
],
38-
subdir: 'asciidtype'
38+
subdir: 'asciidtype',
39+
pure: false
3940
)
4041

4142
py.extension_module(

metadatadtype/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ py.install_sources(
3535
'metadatadtype/__init__.py',
3636
'metadatadtype/scalar.py'
3737
],
38-
subdir: 'metadatadtype'
38+
subdir: 'metadatadtype',
39+
pure: false
3940
)
4041

4142
py.extension_module(

mpfdtype/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ py.install_sources(
4646
[
4747
'mpfdtype/__init__.py',
4848
],
49-
subdir: 'mpfdtype'
49+
subdir: 'mpfdtype',
50+
pure: false
5051
)
5152

5253
py.extension_module(

quaddtype/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ py.install_sources(
3333
'quaddtype/__init__.py',
3434
'quaddtype/quadscalar.py'
3535
],
36-
subdir: 'quaddtype'
36+
subdir: 'quaddtype',
37+
pure: false
3738
)
3839

3940
py.extension_module(

stringdtype/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ py.install_sources(
3838
'stringdtype/scalar.py',
3939
'stringdtype/missing.py',
4040
],
41-
subdir: 'stringdtype'
41+
subdir: 'stringdtype',
42+
pure: false
4243
)
4344

4445
py.extension_module(

unytdtype/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ py.install_sources(
3535
'unytdtype/__init__.py',
3636
'unytdtype/scalar.py'
3737
],
38-
subdir: 'unytdtype'
38+
subdir: 'unytdtype',
39+
pure: false
3940
)
4041

4142
py.extension_module(

0 commit comments

Comments
 (0)