diff --git a/DECIMER/__init__.py b/DECIMER/__init__.py index b480a37..3167d30 100644 --- a/DECIMER/__init__.py +++ b/DECIMER/__init__.py @@ -19,7 +19,7 @@ please raise a issue on the Github repository. """ -__version__ = "2.6.0" +__version__ = "2.7.1" __all__ = [ "DECIMER", diff --git a/requirements.txt b/requirements.txt index 0e42822..c32720d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,4 +3,4 @@ opencv-python pillow-heif pre-commit pystow -tensorflow>=2.8.0,<=2.15.0 +tensorflow>=2.8.0,<=2.15.1 diff --git a/setup.py b/setup.py index 78097b3..ea2f303 100644 --- a/setup.py +++ b/setup.py @@ -6,9 +6,9 @@ if ( platform.processor() == "arm" or platform.processor() == "i386" ) and platform.system() == "Darwin": - tensorflow_os = "tensorflow-macos>=2.10.0,<=2.15.0" + tensorflow_os = "tensorflow-macos>=2.10.0,<=2.15.1" else: - tensorflow_os = "tensorflow>=2.12.0,<=2.15.0" + tensorflow_os = "tensorflow>=2.12.0,<=2.15.1" with open("README.md", "r") as fh: long_description = fh.read() @@ -20,7 +20,7 @@ author_email="kohulan.rajan@uni-jena.de", maintainer="Kohulan Rajan, Otto Brinkhaus ", maintainer_email="kohulan.rajan@uni-jena.de, otto.brinkhaus@uni-jena.de", - description="DECIMER 2.6.0: Deep Learning for Chemical Image Recognition using Efficient-Net V2 + Transformer", + description="DECIMER 2.7.1: Deep Learning for Chemical Image Recognition using Efficient-Net V2 + Transformer", long_description=long_description, long_description_content_type="text/markdown", entry_points={ @@ -47,6 +47,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3 :: Only", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",