mdify-cli 2.9.1__tar.gz → 2.9.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mdify-cli
3
- Version: 2.9.1
3
+ Version: 2.9.2
4
4
  Summary: Convert PDFs and document images into structured Markdown for LLM workflows
5
5
  Author: tiroq
6
6
  License-Expression: MIT
@@ -1,3 +1,3 @@
1
1
  """mdify - Convert documents to Markdown via Docling container."""
2
2
 
3
- __version__ = "2.9.1"
3
+ __version__ = "2.9.2"
@@ -283,10 +283,10 @@ def check_image_exists(runtime: str, image: str) -> bool:
283
283
  try:
284
284
  runtime_name = os.path.basename(runtime)
285
285
 
286
- # Apple Container uses 'image-list' command
286
+ # Apple Container uses 'image list' command (two words)
287
287
  if runtime_name == "container":
288
288
  result = subprocess.run(
289
- [runtime, "image-list", "--format", "json"],
289
+ [runtime, "image", "list", "--format", "json"],
290
290
  capture_output=True,
291
291
  check=False,
292
292
  )
@@ -330,10 +330,10 @@ def pull_image(runtime: str, image: str, quiet: bool = False) -> bool:
330
330
  try:
331
331
  runtime_name = os.path.basename(runtime)
332
332
 
333
- # Apple Container uses 'image-pull' command
333
+ # Apple Container uses 'image pull' command (two words)
334
334
  if runtime_name == "container":
335
335
  result = subprocess.run(
336
- [runtime, "image-pull", image],
336
+ [runtime, "image", "pull", image],
337
337
  capture_output=quiet,
338
338
  check=False,
339
339
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mdify-cli
3
- Version: 2.9.1
3
+ Version: 2.9.2
4
4
  Summary: Convert PDFs and document images into structured Markdown for LLM workflows
5
5
  Author: tiroq
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mdify-cli"
3
- version = "2.9.1"
3
+ version = "2.9.2"
4
4
  description = "Convert PDFs and document images into structured Markdown for LLM workflows"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.8"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes