Skip to content

Commit

Permalink
Fix package author metadata
Browse files Browse the repository at this point in the history
When author in pyproject.toml contains a comma, pdm still doesn't
quote the author, thus generating an invalid PKG-INFO field
Author-Email. As a workaround, we remove the comma from name
'Backblaze, Inc'.
  • Loading branch information
vbaltrusaitis-reef committed Feb 2, 2024
1 parent 930516b commit 8ebf14e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/+fix_package_author.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix package author metadata.
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 = "b2sdk"
description = "Backblaze B2 SDK"
dynamic = ["version"]
authors = [
{name = "Backblaze, Inc", email = "[email protected]"},
{name = "Backblaze Inc", email = "[email protected]"},
]
dependencies = [
"importlib-metadata>=3.3.0; python_version < '3.8'",
Expand Down

0 comments on commit 8ebf14e

Please sign in to comment.