diff options
| author | Bob Halley <halley@dnspython.org> | 2020-05-25 06:29:09 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-25 06:29:09 -0700 |
| commit | 4bc60c4ad75de590f5744fea89bc2f875231c662 (patch) | |
| tree | 90a3a521c408d6f7d4eb89724838fc86274089f1 | |
| parent | acc56930b967b34bea86371112ce5699ec951de6 (diff) | |
| parent | 66e72681152ea211aca4693dff1bb438979c540d (diff) | |
| download | dnspython-4bc60c4ad75de590f5744fea89bc2f875231c662.tar.gz | |
Merge pull request #483 from pspacek/cython3
fix cythonization for Python 3
| -rwxr-xr-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -29,7 +29,8 @@ except ValueError: else: compile_cython = True from Cython.Build import cythonize - ext_modules = cythonize(['dns/*.py', 'dns/rdtypes/*.py', 'dns/rdtypes/*/*.py']) + ext_modules = cythonize(['dns/*.py', 'dns/rdtypes/*.py', 'dns/rdtypes/*/*.py'], + language_level='3') kwargs = { 'name' : 'dnspython', |
