Skip to content

Commit ea606b4

Browse files
authored
Fix quotes for upload-pypi version check (#13887)
After we started using black upload-pypi broke because we switched the style of quotes. This remedies that.
1 parent 0d07c90 commit ea606b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/upload-pypi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def check_sdist(dist: Path, version: str) -> None:
7070
hashless_version = match.group(1) if match else version
7171

7272
assert (
73-
f"'{hashless_version}'" in version_py_contents
73+
f'"{hashless_version}"' in version_py_contents
7474
), "Version does not match version.py in sdist"
7575

7676

0 commit comments

Comments
 (0)