Skip to content

Commit

Permalink
Merge pull request #1616 from jamesmkrieger/prody-master
Browse files Browse the repository at this point in the history
pre-release v2.3.1
  • Loading branch information
jamesmkrieger authored Nov 15, 2022
2 parents 62c6c97 + dcc8292 commit 41db670
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions docs/release/v2.3_series.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ ProDy 2.3 Series
**Bug Fixes and Improvements**:

* use of 4-char hybrid36 (residue version) for biomol segnames
* remove pfam tests
* remove python 3.5 support

2.3.0 (Nov 12, 2022)
------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions prody/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
sys.exit()

if sys.version_info[0] == 3:
if sys.version_info[1] < 4:
sys.stderr.write('Python 3.4 and older is not supported\n')
if sys.version_info[1] < 6:
sys.stderr.write('Python 3.5 and older is not supported\n')
sys.exit()

try:
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml

This file was deleted.

0 comments on commit 41db670

Please sign in to comment.