Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DECIMER/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
please raise a issue on the Github repository.
"""

__version__ = "2.6.0"
__version__ = "2.7.1"

__all__ = [
"DECIMER",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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={
Expand All @@ -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",
Expand Down
Loading