Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions examples/aws_lambda/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
slack-bolt/
slack_bolt/
vendor/
.env
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

test_dependencies = [
"pytest>=6.2.5,<7",
"pytest-cov>=2,<3",
"pytest-cov>=3,<4",
"Flask-Sockets>=0.2,<1",
"Werkzeug<2", # TODO: support Flask 2.x
"black==21.9b0",
Expand Down Expand Up @@ -67,18 +67,18 @@
"moto<2", # For AWS tests
"bottle>=0.12,<1",
"boddle>=0.2,<0.3", # For Bottle app tests
"chalice>=1.22.4,<2",
"chalice>=1.26.1,<2",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As chalice always depends on a specific version of pip (I don't know why), we want to do tests with the latest version.

"click>=7,<8", # for chalice
"CherryPy>=18,<19",
"Django>=3,<4",
"falcon>=2,<3",
"fastapi<1",
"fastapi>=0.70.0,<1",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the consistency with starlette 0.14+

"Flask>=1,<2",
"Werkzeug<2", # TODO: support Flask 2.x
"pyramid>=1,<2",
"sanic>=21,<22" if sys.version_info.minor > 6 else "sanic>=20,<21",
"sanic-testing>=0.6" if sys.version_info.minor > 6 else "",
"starlette>=0.13,<1",
"sanic-testing>=0.7" if sys.version_info.minor > 6 else "",
"starlette>=0.14,<1",
"requests>=2,<3", # For starlette's TestClient
"tornado>=6,<7",
# server
Expand Down