Skip to content

Commit 4505784

Browse files
author
Robert Sachunsky
committed
update version
1 parent 0dc8f04 commit 4505784

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

ocrd_cis/ocrd-tool.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"git_url": "https://github.com/cisocrgroup/ocrd_cis",
3-
"version": "0.0.8",
3+
"version": "0.0.10",
44
"tools": {
55
"ocrd-cis-ocropy-binarize": {
66
"executable": "ocrd-cis-ocropy-binarize",

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@
2121
with codecs.open('README.md', encoding='utf-8') as f:
2222
README = f.read()
2323

24+
with open('./ocrd-tool.json', 'r') as f:
25+
version = json.load(f)['version']
26+
2427
setup(
2528
name='ocrd_cis',
26-
version='0.0.9',
29+
version=version,
2730
description='CIS OCR-D command line tools',
2831
long_description=README,
2932
long_description_content_type='text/markdown',
@@ -34,11 +37,11 @@
3437
packages=find_packages(),
3538
include_package_data=True,
3639
install_requires=[
37-
'ocrd>=2.4.0',
40+
'ocrd>=2.10.4',
3841
'click',
3942
'scipy',
4043
'numpy>=1.17.0',
41-
'pillow>=6.2.0',
44+
'pillow>=7.1.2',
4245
'shapely',
4346
'scikit-image',
4447
'opencv-python-headless',

0 commit comments

Comments
 (0)