Skip to content

Commit a37166f

Browse files
WilliamBergaminClaude
andcommitted
chore(deps-dev): keep Python 3.9 on chalice 1.32.x
chalice 1.33.0 dropped Python 3.9 support (requires_python >=3.10), so Dependabot's bump of the python_version >= "3.9" line to >=1.33.0 would break the install on the 3.9 CI leg. Split the marker so 3.9 stays on the last 1.32.x release and 3.10+ takes 1.33.0. Co-Authored-By: Claude <svc-devxp-claude@slack-corp.com>
1 parent 6c4ab74 commit a37166f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

requirements/adapter_dev.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ boto3<=2
99
bottle>=0.12,<1
1010

1111
# chalice
12+
# Note: chalice 1.33.0 requires Python >=3.10; 3.9 stays on the last 1.32.x release and 3.7/3.8 stay on the older pinned release.
1213
chalice>=1.28,<1.31; python_version < "3.9"
13-
chalice>=1.33.0,<2; python_version >= "3.9"
14+
chalice>=1.32.0,<1.33; python_version >= "3.9" and python_version < "3.10"
15+
chalice>=1.33.0,<2; python_version >= "3.10"
1416

1517
# cheroot
1618
cheroot<12

0 commit comments

Comments
 (0)