From 27c065ba24192868bb6a6610d8f7688e97626d5c Mon Sep 17 00:00:00 2001 From: Arian Jamasb Date: Thu, 26 Oct 2023 15:52:40 +0200 Subject: [PATCH] Bump versionstrings for `1.7.4` release (#351) * change dssp conda install to apt * add looseversion dependency * bump changelog * use apt-get * fix broken test from deprecated PDB * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * make pdb code in test lowercase * make pdb code in test lowercase * pin biopython version <1.81 for dssp compatibility * switch dssp back to apt-get * pin biopython <=1.79 for dssp * pin dssp version in CI * switch dssp install back to salilab * install specific boost version for DSSP * add python 3.10 and torch 2.1.0 to CI matrix * make 3.10 python version string * unpin biopython version * bump docstrings to 1.7.4 --------- Co-authored-by: Arian Jamasb Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- CHANGELOG.md | 2 +- docs/source/conf.py | 2 +- graphein/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b50f4c2e..6c889e18c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -### 1.7.4 - UNRELEASED +### 1.7.4 - 26/10/2023 * Adds support for PyG 2.4+ ([#350](https://www.github.com/a-r-j/graphein/pull/339)) * Fixes `add_sequence_neighbour_vector` to have a zero vector when no neighbor is feasible. Extend to handle insertion codes ([#336](https://github.com/a-r-j/graphein/pull/336)). diff --git a/docs/source/conf.py b/docs/source/conf.py index 9b38d3f73..72e29a35e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -34,7 +34,7 @@ copyright = f"{datetime.datetime.now().year}, {author}" # The full version, including alpha/beta/rc tags -release = "1.7.3" +release = "1.7.4" # -- General configuration --------------------------------------------------- diff --git a/graphein/__init__.py b/graphein/__init__.py index 3c3c2d929..a760bf350 100644 --- a/graphein/__init__.py +++ b/graphein/__init__.py @@ -12,7 +12,7 @@ from .testing import * __author__ = "Arian Jamasb " -__version__ = "1.7.3" +__version__ = "1.7.4" logger.configure( diff --git a/setup.py b/setup.py index bf4e8cda3..520cb3d37 100644 --- a/setup.py +++ b/setup.py @@ -134,7 +134,7 @@ def run(self): setup( name="graphein", - version="1.7.3", + version="1.7.4", description="Protein & Interactomic Graph Construction for Machine Learning", long_description=long_description, long_description_content_type="text/markdown",