From a277ea67e3dc62c26fd2420e1530ede69e92e565 Mon Sep 17 00:00:00 2001 From: Suhwan Seo Date: Wed, 20 Nov 2024 19:35:58 +0900 Subject: [PATCH] fix: update `ocrmac` dependency with macOS-specific marker - Added `sys_platform == 'darwin'` marker to the `ocrmac` dependency in `pyproject.toml` to specify macOS compatibility. - Updated the content hash in `poetry.lock` to reflect the changes. This ensures the `ocrmac` dependency is only installed on macOS systems. Signed-off-by: Suhwan Seo --- poetry.lock | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index db78c945..d8dd1c80 100644 --- a/poetry.lock +++ b/poetry.lock @@ -7366,4 +7366,4 @@ tesserocr = ["tesserocr"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "a9912d5333298b629d774f669f4e5eb794333d1694ca7f72f56b9a37e51d5776" +content-hash = "129137f8229158ac7672919df1684a260f74db22517d4d40c905f801f2950f46" diff --git a/pyproject.toml b/pyproject.toml index 11bfa584..52c68035 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ beautifulsoup4 = "^4.12.3" pandas = "^2.1.4" marko = "^2.1.2" openpyxl = "^3.1.5" -ocrmac = { version = "^1.0.0", optional = true } +ocrmac = { version = "^1.0.0", markers = "sys_platform == 'darwin'", optional = true } [tool.poetry.group.dev.dependencies] black = {extras = ["jupyter"], version = "^24.4.2"}