Unverified Commit a4363454 authored by peastman's avatar peastman Committed by GitHub
Browse files

Fixed deprecated option in setup.py (#2973)

parent 6a5cc4f2
...@@ -215,7 +215,7 @@ def buildKeywordDictionary(major_version_num=MAJOR_VERSION_NUM, ...@@ -215,7 +215,7 @@ def buildKeywordDictionary(major_version_num=MAJOR_VERSION_NUM,
if platform.system() != "Windows": if platform.system() != "Windows":
extensionArgs["runtime_library_dirs"] = library_dirs extensionArgs["runtime_library_dirs"] = library_dirs
setupKeywords["ext_modules"] = [Extension(**extensionArgs)] setupKeywords["ext_modules"] = [Extension(**extensionArgs)]
setupKeywords["ext_modules"] += cythonize('simtk/openmm/app/internal/*.pyx', language='c++') setupKeywords["ext_modules"] += cythonize('simtk/openmm/app/internal/*.pyx')
outputString = '' outputString = ''
firstTab = 40 firstTab = 40
......
# distutils: language = c++
# cython: language_level = 3
""" """
compiled.pyx: Utility functions that are compiled with Cython for speed compiled.pyx: Utility functions that are compiled with Cython for speed
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment