From bb86e81a2a50f0563635359866aedf5624660bf7 Mon Sep 17 00:00:00 2001 From: RobbinBouwmeester Date: Mon, 1 Jul 2024 11:09:59 +0200 Subject: [PATCH] Relax tf version --- CHANGELOG.md | 4 ++++ pyproject.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a92112..5d266f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# [2.2.38] - 2024-07-01 + +- Relax tensorflow version for mac + # [2.2.37] - 2024-07-01 - Pin scipy version diff --git a/pyproject.toml b/pyproject.toml index aba6039..f38828b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "deeplc" -version = "2.2.37" +version = "2.2.38" description = "DeepLC: Retention time prediction for (modified) peptides using Deep Learning." readme = "README.md" license = { file = "LICENSE" } @@ -31,7 +31,7 @@ keywords = [ ] dependencies = [ - "tensorflow>=2.2,<2.13.0", + "tensorflow>=2.2,<2.15.0", "numpy>=1.17,<2", "pandas>=0.25,<2", "h5py>=2.10.0,<4",