Skip to content

Commit 4229d44

Browse files
authored
Fix chalice tests (#2278)
The dependency resolution for some of our chalice tests had a hard time identifying a good version of botocore to install. This commit pins it.
1 parent 9a0e864 commit 4229d44

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tox.ini

+6-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ envlist =
5050
# TODO: enable when celery is ready {py3.7,py3.8,py3.9,py3.10,py3.11}-celery-v{5.3}
5151

5252
# Chalice
53-
{py3.6,py3.7,py3.8}-chalice-v{1.16,1.17,1.18,1.19,1.20}
53+
{py3.6,py3.7,py3.8}-chalice-v{1.18,1.20,1.22,1.24}
5454

5555
# Cloud Resource Context
5656
{py3.6,py3.7,py3.8,py3.9,py3.10,py3.11}-cloud_resource_context
@@ -231,13 +231,15 @@ deps =
231231
{py2.7,py3.6,py3.7,py3.8,py3.9,py3.10,py3.11}-celery: newrelic
232232

233233
# Chalice
234-
chalice-v1.16: chalice>=1.16.0,<1.17.0
235-
chalice-v1.17: chalice>=1.17.0,<1.18.0
236234
chalice-v1.18: chalice>=1.18.0,<1.19.0
237-
chalice-v1.19: chalice>=1.19.0,<1.20.0
238235
chalice-v1.20: chalice>=1.20.0,<1.21.0
236+
chalice-v1.22: chalice>=1.22.0,<1.23.0
237+
chalice-v1.24: chalice>=1.24.0,<1.25.0
239238
chalice: pytest-chalice==0.0.5
240239

240+
{py3.7}-chalice: botocore~=1.31
241+
{py3.8}-chalice: botocore~=1.31
242+
241243
# Django
242244
django: Werkzeug<2.1.0
243245
django-v{1.11,2.0,2.1,2.2,3.0,3.1,3.2}: djangorestframework>=3.0.0,<4.0.0

0 commit comments

Comments
 (0)