Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit 606987d

Browse files
committed
fix build
1 parent f744a16 commit 606987d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

noxfile.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,11 +512,12 @@ def prerelease_deps(session, protobuf_implementation, database_dialect):
512512
constraints_deps = [
513513
match.group(1)
514514
for match in re.finditer(
515-
r"^\s*(\S+)(?===\S+)", constraints_text, flags=re.MULTILINE
515+
r"^\s*([a-zA-Z0-9._-]+)", constraints_text, flags=re.MULTILINE
516516
)
517517
]
518518

519-
session.install(*constraints_deps)
519+
if constraints_deps:
520+
session.install(*constraints_deps)
520521

521522
prerel_deps = [
522523
"protobuf",

0 commit comments

Comments
 (0)