orzih/mkdocs-with-pdf

RuntimeError

Stanislasss opened this issue · 6 comments

I cannot run in strict mode anymore, getting the following warnings:

INFO:weasyprint.progress:Step 6 - Creating PDF
WARNING:py.warnings:/usr/local/lib/python3.10/site-packages/pydyf/__init__.py:404: DeprecationWarning: transform is deprecated, use set_matrix instead.
  warn(Stream.transform.__doc__, DeprecationWarning)

WARNING:py.warnings:/usr/local/lib/python3.10/site-packages/pydyf/__init__.py:126: DeprecationWarning: color_space is deprecated, use set_color_space instead.
  warn(Stream.color_space.__doc__, DeprecationWarning)

WARNING:py.warnings:/usr/local/lib/python3.10/site-packages/pydyf/__init__.py:399: DeprecationWarning: text_matrix is deprecated, use set_text_matrix instead.
  warn(Stream.text_matrix.__doc__, DeprecationWarning)

Is there a way to fix those warnings?

The versions I am currently using:

[tool.poetry.dependencies]
python = "^3.10"
mkdocs = "^1.6.0"
mkdocs-material = "9.5.25"
mkdocs-with-pdf = "0.9.3"
mkdocs-awesome-pages-plugin = "2.9.1"
weasyprint = "^62.3"


[tool.poetry.dev-dependencies]
boto3 = "^1.27.1"
click = "^8.1.7"
python-gitlab = "^4.1.1"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

Thanks for the help.