Skip to content

Commit dda6d0e

Browse files
committed
fix(deps): pin boto3 to 1.42.* on Python 3.9
boto3 1.43.0 requires Python >=3.10, which breaks installs on Python 3.9. Add a python_version gate so 3.9 stays on the 1.42.x series (the last to support 3.9) while newer interpreters track 1.43.*.
1 parent 411d718 commit dda6d0e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ azure-mgmt-rdbms==10.1.1
1919
azure-mgmt-resource==25.0.0
2020
azure-mgmt-subscription==3.1.1
2121
bcrypt==5.0.*
22-
boto3==1.43.*
22+
boto3==1.42.*; python_version <= '3.9'
23+
boto3==1.43.*; python_version > '3.9'
2324
certifi==2026.4.22
2425
cryptography==47.0.*
2526
Flask-Babel==4.0.*

0 commit comments

Comments
 (0)