Skip to content

Commit

Permalink
More MSVC fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Jan 9, 2025
1 parent 76beb1e commit 7083aaf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pandas/_libs/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ libs_sources = {
},
'lib': {
'sources': ['lib.pyx', 'src/parser/tokenizer.c'],
'c_args': ['-Wno-unused-function'], # cython issue 6603
# cython issue 6603
'c_args': cc.get_supported_arguments(['-Wno-unused-function']),
},
'missing': {'sources': ['missing.pyx']},
'pandas_datetime': {
Expand Down Expand Up @@ -122,7 +123,8 @@ libs_sources = {
'properties': {'sources': ['properties.pyx']},
'reshape': {
'sources': ['reshape.pyx'],
'c_args': ['-Wno-unused-function'], # cython issue 6603
# cython issue 6603
'c_args': cc.get_supported_arguments(['-Wno-unused-function']),
},
'sas': {'sources': ['sas.pyx']},
'byteswap': {'sources': ['byteswap.pyx']},
Expand Down

0 comments on commit 7083aaf

Please sign in to comment.