Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
a4363454
Unverified
Commit
a4363454
authored
Jan 04, 2021
by
peastman
Committed by
GitHub
Jan 04, 2021
Browse files
Fixed deprecated option in setup.py (#2973)
parent
6a5cc4f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
wrappers/python/setup.py
wrappers/python/setup.py
+1
-1
wrappers/python/simtk/openmm/app/internal/compiled.pyx
wrappers/python/simtk/openmm/app/internal/compiled.pyx
+3
-0
No files found.
wrappers/python/setup.py
View file @
a4363454
...
@@ -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
...
...
wrappers/python/simtk/openmm/app/internal/compiled.pyx
View file @
a4363454
# 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment