Skip to content

Commit 90a5714

Browse files
authored
chore(lambdas): normalize t4-lambda-shared pin declarations (#5091)
Normalize all nine consumers to one pin shape: hyphenated (PEP 503-normalized) name in dependencies, URL in [tool.uv.sources]. Previously three variants coexisted (sources-table hyphen, sources-table underscore, inline PEP 508 URL in thumbnail), so a shared-lib bump couldn't be a single mechanical edit. No pinned SHA changes; lockfiles byte-identical.
1 parent 6c046db commit 90a5714

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

lambdas/access_counts/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
requires-python = "==3.13.*"
55
dependencies = [
66
"boto3[crt]~=1.40",
7-
"t4_lambda_shared",
7+
"t4-lambda-shared",
88
]
99

1010
[build-system]
@@ -23,4 +23,4 @@ test = [
2323
default-groups = ["test"]
2424

2525
[tool.uv.sources]
26-
t4_lambda_shared = { url = "https://github.com/quiltdata/quilt/archive/d496dffbfb4b7a2ae05f6c1f7f0cb7d5d43bc984.zip", subdirectory = "lambdas/shared" }
26+
t4-lambda-shared = { url = "https://github.com/quiltdata/quilt/archive/d496dffbfb4b7a2ae05f6c1f7f0cb7d5d43bc984.zip", subdirectory = "lambdas/shared" }

lambdas/indexer/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies = [
1414
"strict-rfc3339~=0.7", # for jsonschema format
1515
"tenacity~=9.0",
1616
"quilt-shared[boto,es]",
17-
"t4_lambda_shared[mem,preview]",
17+
"t4-lambda-shared[mem,preview]",
1818
]
1919

2020
[build-system]

lambdas/thumbnail/pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies = [
1010
"pillow~=12.2",
1111
"python-pptx~=1.0.0",
1212
"requests>=2.26.0,<3",
13-
"t4_lambda_shared @ https://github.com/quiltdata/quilt/archive/d496dffbfb4b7a2ae05f6c1f7f0cb7d5d43bc984.zip#subdirectory=lambdas/shared",
13+
"t4-lambda-shared",
1414
"bioio~=3.0",
1515
"bioio-base~=3.0",
1616
"bioio-czi~=2.7",
@@ -38,3 +38,6 @@ prod = [
3838
[tool.uv]
3939
default-groups = ["test"]
4040

41+
[tool.uv.sources]
42+
t4-lambda-shared = { url = "https://github.com/quiltdata/quilt/archive/d496dffbfb4b7a2ae05f6c1f7f0cb7d5d43bc984.zip", subdirectory = "lambdas/shared" }
43+

0 commit comments

Comments
 (0)