forked from hnesk/browse-ocrd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
help pip to not install conflicting requirements
- Loading branch information
Showing
3 changed files
with
10 additions
and
7 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 |
---|---|---|
|
@@ -26,6 +26,8 @@ jobs: | |
python-version: ${{ matrix.python-version }} | ||
- name: Install system dependencies | ||
run: sudo make deps-ubuntu | ||
# - name: Install system dependencies (screenshot) | ||
# run: sudo apt install xrandr imagemagick | ||
- name: Install dependencies and browse-ocrd | ||
run: make deps-dev deps install | ||
- name: Lint with flake8 | ||
|
@@ -42,9 +44,9 @@ jobs: | |
with: | ||
name: Unit Test Results (Python ${{ matrix.python-version }}) | ||
path: unittest.xml | ||
- name: Run browse-ocrd | ||
run: browse-ocrd tests/example/workspaces/kant_aufklaerung_1784_missing_xml/mets.xml | ||
- name: Screenshot | ||
uses: OrbitalOwen/[email protected] | ||
with: | ||
file-name: 'desktop.jpg' | ||
# - name: Run browse-ocrd | ||
# run: browse-ocrd tests/example/workspaces/kant_aufklaerung_1784_missing_xml/mets.xml | ||
# - name: Screenshot | ||
# uses: OrbitalOwen/[email protected] | ||
# with: | ||
# file-name: 'desktop.jpg' |
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,5 +1,6 @@ | ||
wheel | ||
setuptools | ||
unittest-xml-reporting | ||
html-testRunner | ||
flake8 | ||
mypy |
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,6 +1,6 @@ | ||
ocrd | ||
Pillow | ||
numpy | ||
numpy<1.19.0,>=1.17.0 | ||
opencv-python-headless | ||
PyGObject | ||
python-magic | ||
|