Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.
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
40 changes: 39 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/supabase-community/functions-py"

[tool.poetry.dependencies]
python = "^3.8"
httpx = ">=0.24,<0.28"
httpx = {version = ">=0.24,<0.28", extras = ["http2"]}

[tool.poetry.group.dev.dependencies]
python-semantic-release = ">=8.1.1,<10.0.0"
Expand Down
1 change: 1 addition & 0 deletions supabase_functions/_async/functions_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def __init__(self, url: str, headers: Dict, verify: bool = True):
headers=self.headers,
verify=bool(verify),
follow_redirects=True,
http2=True,
)

async def _request(
Expand Down
1 change: 1 addition & 0 deletions supabase_functions/_sync/functions_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def __init__(self, url: str, headers: Dict, verify: bool = True):
headers=self.headers,
verify=bool(verify),
follow_redirects=True,
http2=True,
)

def _request(
Expand Down