-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Change Log | ||
========== | ||
Versioned according to [Semantic Versioning](http://semver.org/). | ||
|
||
## Unreleased | ||
|
||
## [0.0.2] - 2020-05-06 | ||
|
||
Fixed: | ||
|
||
* Graceful degradation to CPU processing if CUDA not available, #56 | ||
|
||
<!-- link-labels --> | ||
[0.0.2]: ../../compare/HEAD...v0.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
# -*- coding: utf-8 -*- | ||
from setuptools import setup, find_packages | ||
import json | ||
with open('ocrd-tool.json', 'r') as f: | ||
version = json.load(f)['version'] | ||
|
||
setup( | ||
name='ocrd-anybaseocr', | ||
version='0.0.1', | ||
version=version, | ||
author="DFKI", | ||
author_email="[email protected], [email protected]", | ||
url="https://github.com/mjenckel/LAYoutERkennung", | ||
url="https://github.com/OCR-D/ocrd_anybaseocr", | ||
license='Apache License 2.0', | ||
long_description=open('README.md').read(), | ||
long_description_content_type='text/markdown', | ||
|
@@ -19,7 +22,7 @@ | |
'console_scripts': [ | ||
'ocrd-anybaseocr-binarize = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_binarize', | ||
'ocrd-anybaseocr-deskew = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_deskew', | ||
'ocrd-anybaseocr-crop = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_cropping', | ||
'ocrd-anybaseocr-crop = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_cropping', | ||
'ocrd-anybaseocr-dewarp = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_dewarp', | ||
'ocrd-anybaseocr-tiseg = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_tiseg', | ||
'ocrd-anybaseocr-textline = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_textline', | ||
|
e5601f2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should
ocrd_all
be updated to use 0.0.2? When I run agit rebase
based on the current commit b67d5bb, I get a merge conflict.