From a5395f82aabeb1c3ca7355d01bafc6a4f8aef795 Mon Sep 17 00:00:00 2001 From: Adrian Hill Date: Wed, 13 Sep 2023 19:03:56 +0200 Subject: [PATCH] Update dependencies: allow TensorFlow 2.13 and Pillow 10. --- README.md | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4e2ec2d6..9ae46e89 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ [![Black](https://img.shields.io/badge/code_style-black-black.svg)](https://github.com/psf/black) [![Python](https://img.shields.io/pypi/pyversions/innvestigate.svg)](https://badge.fury.io/py/innvestigate) -[![TensorFlow package version](https://img.shields.io/badge/TensorFlow-2.6_--_2.12-orange.svg)](https://github.com/albermax/innvestigate) +[![TensorFlow package version](https://img.shields.io/badge/TensorFlow-2.6_--_2.13-orange.svg)](https://github.com/albermax/innvestigate) ![Different explanation methods on ImageNet.](https://github.com/albermax/innvestigate/raw/master/examples/images/analysis_grid.png) diff --git a/pyproject.toml b/pyproject.toml index dfbc31a7..95399b59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,14 +36,14 @@ keywords = ["XAI", "LRP", "Deep Taylor",] [tool.poetry.dependencies] python = ">=3.8, <3.12" -tensorflow = ">=2.6, <2.13" +tensorflow = ">=2.6, <2.14" numpy = ">=1.22, <2" matplotlib = ">=3.5, <4" future = ">=0.18, <0.19" [tool.poetry.group.notebooks.dependencies] ipykernel = ">=6.19, <7" -Pillow = ">=9.0, <10" +Pillow = ">=9.0, <11" ftfy = ">=6.1, <7" pandas = ">=1, <3"