Skip to content

Commit

Permalink
Update pyproject.toml to depend on Black 24.10.0.
Browse files Browse the repository at this point in the history
Pyink 24.10.0 accidentally depended on Black 24.8.0, instead of Black 24.10.0, which causes the build to fail with Python 3.13 due to Black 24.8.0 not yet being compatible with that version.

Fixes #60

PiperOrigin-RevId: 713974224
  • Loading branch information
The Pyink Maintainers authored and copybara-github committed Jan 10, 2025
1 parent 5ace049 commit 1de8968
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion patches/pyink.patch
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@
"platformdirs>=2",
"tomli>=1.1.0; python_version < '3.11'",
"typing_extensions>=4.0.1; python_version < '3.11'",
+ "black==24.8.0",
+ "black==24.10.0",
]
-dynamic = ["readme", "version"]
+dynamic = ["version"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies = [
"platformdirs>=2",
"tomli>=1.1.0; python_version < '3.11'",
"typing_extensions>=4.0.1; python_version < '3.11'",
"black==24.8.0",
"black==24.10.0",
]
dynamic = ["version"]

Expand Down

0 comments on commit 1de8968

Please sign in to comment.