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
fbfb8097
Commit
fbfb8097
authored
Jul 14, 2015
by
John Chodera (MSKCC)
Browse files
Modified __version__ in setup.py to automatically pick up appropriate version numbers.
parent
88fa7542
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
wrappers/python/setup.py
wrappers/python/setup.py
+2
-3
No files found.
wrappers/python/setup.py
View file @
fbfb8097
...
@@ -3,9 +3,6 @@
...
@@ -3,9 +3,6 @@
"""
"""
setup.py: Used for building python wrappers for Simbios' OpenMM library.
setup.py: Used for building python wrappers for Simbios' OpenMM library.
"""
"""
__author__
=
"Randall J. Radmer"
__version__
=
"6.3"
import
ast
import
ast
import
re
import
re
import
os
import
os
...
@@ -18,6 +15,8 @@ MINOR_VERSION_NUM='@OPENMM_MINOR_VERSION@'
...
@@ -18,6 +15,8 @@ MINOR_VERSION_NUM='@OPENMM_MINOR_VERSION@'
BUILD_INFO
=
'@OPENMM_BUILD_VERSION@'
BUILD_INFO
=
'@OPENMM_BUILD_VERSION@'
IS_RELEASED
=
False
IS_RELEASED
=
False
__author__
=
"Randall J. Radmer"
__version__
=
"%s.%s"
%
(
MAJOR_VERSION_NUM
,
MINOR_VERSION_NUM
)
def
reportError
(
message
):
def
reportError
(
message
):
sys
.
stdout
.
write
(
"ERROR: "
)
sys
.
stdout
.
write
(
"ERROR: "
)
...
...
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