Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "chatacter"
version = "0.1.0"
description = "Character Documentation"
readme = "README.md"
requires-python = ">=3.10,<3.12"
requires-python = ">=3.10,<3.13"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

While you've updated the requires-python constraint to allow Python 3.12, the uv.lock file hasn't been updated. This can lead to installation failures for users on Python 3.12, as the currently locked dependency versions might not have compatible wheels or may fail to build from source.

To ensure compatibility, please regenerate the uv.lock file, for example by running uv pip compile pyproject.toml -o uv.lock in a Python 3.12 environment.

dependencies = [
"cairosvg>=2.7.1",
"mkdocs>=1.6.1",
Expand Down
Loading