From e5acee09abb3e291fc6b3b48c3655648422cad40 Mon Sep 17 00:00:00 2001 From: Clemens Neudecker <952378+cneud@users.noreply.github.com> Date: Thu, 17 Aug 2023 21:05:51 +0200 Subject: [PATCH] cap tensorflow version to <2.12.0 Cap tensorflow version to <2.12.0 until we have time to adapt to the API changes such as e.g. * Support for Python 3.11 has been added. * Support for Python 3.7 has been removed. See also https://github.com/tensorflow/tensorflow/releases/tag/v2.12.0. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0180d01..0d7c5b2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ # ocrd includes opencv, numpy, shapely, click ocrd >= 2.23.3 scikit-learn >= 0.23.2 -tensorflow >= 2.4.0 +tensorflow >= 2.4.0, <2.12.0 imutils >= 0.5.3 matplotlib setuptools >= 50