Skip to content

Commit

Permalink
deps: remove unstructured and keep only unstructured-client
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoloboschi committed May 15, 2024
1 parent 596c115 commit 915533f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_parse_pyversion() -> None:
version = "0.1.0"
packages = [{include = "app"}]
""")
assert doc.base_image == "python:3.11-slim-buster"
assert doc.base_image == "python:3.11-slim-bookworm"
doc = _parse_pyproject_toml_content("""
[tool.poetry]
name = "my-app"
Expand All @@ -100,7 +100,7 @@ def test_parse_pyversion() -> None:
[tool.poetry.dependencies]
python = "^3.9"
""")
assert doc.base_image == "python:3.9-slim-buster"
assert doc.base_image == "python:3.9-slim-bookworm"
doc = _parse_pyproject_toml_content("""
[tool.poetry]
name = "my-app"
Expand All @@ -109,7 +109,7 @@ def test_parse_pyversion() -> None:
[tool.poetry.dependencies]
python = ">3.9,<3.12"
""")
assert doc.base_image == "python:3.11-slim-buster"
assert doc.base_image == "python:3.11-slim-bookworm"


def test_parse() -> None:
Expand Down

0 comments on commit 915533f

Please sign in to comment.