Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion requirements/test_adapter.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

# moto
# Note: for AWS tests
moto>=3,<6
# Note: moto drops old Pythons across the 5.x line — 5.0.0 requires >=3.8, 5.1.0 >=3.9, 5.2.0 >=3.10; older interpreters stay on the last compatible release.
moto>=3,<5; python_version < "3.8"
moto>=3,<5.1; python_version >= "3.8" and python_version < "3.9"
moto>=3,<5.2; python_version >= "3.9" and python_version < "3.10"
moto>=5.2.2,<6; python_version >= "3.10"

# boddle
# Note: for Bottle app tests
Expand Down