mirror of
https://github.com/qurator-spk/sbb_textline_detection.git
synced 2025-07-01 22:50:12 +02:00
I believe this was never supposed to work on Python 3.7 and there some problems with it: https://github.com/qurator-spk/sbb_textline_detection/issues/64 "Fix" this by removing the test on Python 3.7. Fixes gh-64.
16 lines
384 B
YAML
16 lines
384 B
YAML
# Travis CI configuration for sbb_textline_detector
|
|
|
|
dist: xenial # required for Python >= 3.7
|
|
language: python
|
|
python:
|
|
# sbb_textline_detector requires Python 3.6
|
|
- "3.6"
|
|
# broken on Python 3.7 (and never supposed to work)
|
|
# tensorflow-gpu<2.0 is not available for Python 3.8
|
|
|
|
install:
|
|
- pip install -U pip
|
|
- pip install .
|
|
|
|
script:
|
|
- ocrd-sbb-textline-detector --help
|