Skip to content

Commit

Permalink
Merge pull request #1299 from yaz62/master
Browse files Browse the repository at this point in the history
update version number
  • Loading branch information
SHZ66 authored Feb 7, 2021
2 parents 4ecdd87 + eff98c1 commit d2fd1f8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: ProDy
Version: 1.11
Version: 2.0
Summary: A Python Package for Protein Dynamics Analysis
Home-page: http://www.csb.pitt.edu/ProDy
Author: James Krieger, She Zhang, Hongchun Li, Cihan Kaya, Ahmet Bakan, and others
Expand Down Expand Up @@ -95,4 +95,4 @@ Requires: numpy (>=1.10)
Requires: pyparsing
Requires: biopython
Requires: scipy
Provides: prody (1.11)
Provides: prody (2.0)
2 changes: 1 addition & 1 deletion prody/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""ProDy is a package for Protein Dynamics, Sequence, and Structure Analysis"""

__version__ = '1.11'
__version__ = '2.0'
__release__ = __version__ # + '-dev' # comment out '-dev' before a release

import sys
Expand Down
2 changes: 1 addition & 1 deletion prody/dynamics/exanm.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, name='Unknown'):
self._combined = None

def buildMembrane(self, coords, **kwargs):
"""Build Hessian matrix for given coordinate set.
"""Build membrane lattice around **coords**.
:arg coords: a coordinate set or an object with ``getCoords`` method
:type coords: :class:`numpy.ndarray`
Expand Down
2 changes: 1 addition & 1 deletion prody/proteins/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -1381,7 +1381,7 @@ def _findAlignment(sequence, alignment):
def getCEAlignMapping(target, chain):
try:
from .ccealign import ccealign
except:
except ImportError:
LOGGER.warn('Could not import ccealign C/C++ extension.'
'It may not be installed properly.')
return None
Expand Down

0 comments on commit d2fd1f8

Please sign in to comment.