Skip to content

Commit

Permalink
Attempt to fix matrix and unpaper version error
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarlow83 committed Oct 27, 2024
1 parent 23bc247 commit 9d04276
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python: ["3.10", "3.11", "3.12", "3.13"]
include:
- os: ubuntu-22.04
tesseract_ppa: true
tesseract_ppa: "ppa"
python: "3.10"
- os: ubuntu-24.04
python: "pypy3.10"
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, macos-13] # macos-latest is arm64, macos-13 is x86_64
python: ["3.10", "3.11", "3.12"]
python: ["3.10", "3.11", "3.12", "3.13"]

env:
OS: ${{ matrix.os }}
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
strategy:
matrix:
os: [windows-latest]
python: ["3.10", "3.11", "3.12"]
python: ["3.10", "3.11", "3.12", "3.13"]

env:
OS: ${{ matrix.os }}
Expand Down
6 changes: 4 additions & 2 deletions src/ocrmypdf/subprocess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,10 @@ def get_version(

OLD_VERSION_REQUIRED_FOR = '''
OCRmyPDF requires '{program}' {need_version} or higher when run with the
{required_for} arguments. If you omit these arguments, OCRmyPDF may be able to
proceed. For best results, install the program.
{required_for} arguments. {program} {found_version} is installed.
If you omit these arguments, OCRmyPDF may be able to
proceed. For best results, update the program.
'''

OSX_INSTALL_ADVICE = '''
Expand Down

0 comments on commit 9d04276

Please sign in to comment.