Skip to content

Commit

Permalink
update patch workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed May 31, 2024
1 parent 2c1152f commit f585f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject_toml_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
PATCH_WITHOUT_TAG_WORKAROUND = [
chr(i)
for i in range(32, 127)
if chr(i) not in ['"', ","] # else upsets toml syntax
if chr(i) not in ['"', ",", "\\"] # else upsets toml syntax
]

DEV_STATUS_PREALPHA_0_0_0 = "Development Status :: 2 - Pre-Alpha"
Expand Down

0 comments on commit f585f72

Please sign in to comment.