8000 Cython language level 3 by WillAyd · Pull Request #24538 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Cython language level 3 #24538

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 8 commits into from
Mar 19, 2019
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'upstream/master' into cython-3-compat
  • Loading branch information
WillAyd committed Feb 6, 2019
commit 92e140a46de850cb2cbf529ab36552d7cb5e47f0
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,8 @@ def run(self):
# Note: if not using `cythonize`, coverage can be enabled by
# pinning `ext.cython_directives = directives` to each ext in extensions.
# github.com/cython/cython/wiki/enhancements-compilerdirectives#in-setuppy
directives = {'linetrace': False, 'language_level': 3}
directives = {'linetrace': False,
'language_level': 3}
macros = []
if linetrace:
# https://pypkg.com/pypi/pytest-cython/f/tests/example-project/setup.py
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0