Skip to content

Commit bb6599b

Browse files
Merge branch 'main' into edgefunc
2 parents 1b84370 + d3e1104 commit bb6599b

File tree

5 files changed

+50
-10
lines changed

5 files changed

+50
-10
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
token: ${{ secrets.SILENTWORKS_PAT }}
5757
- name: Python Semantic Release
5858
id: release
59-
uses: python-semantic-release/python-semantic-release@v9.8.3
59+
uses: python-semantic-release/python-semantic-release@v9.8.5
6060
with:
6161
github_token: ${{ secrets.GITHUB_TOKEN }}
6262

poetry.lock

Lines changed: 45 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repository = "https://github.com/supabase-community/functions-py"
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.8"
15-
httpx = ">=0.24,<0.28"
15+
httpx = {version = ">=0.24,<0.28", extras = ["http2"]}
1616

1717
[tool.poetry.group.dev.dependencies]
1818
python-semantic-release = ">=8.1.1,<10.0.0"

supabase_functions/_async/functions_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ def __init__(self, url: str, headers: Dict, verify: bool = True):
1818
headers=self.headers,
1919
verify=bool(verify),
2020
follow_redirects=True,
21+
http2=True,
2122
)
2223

2324
async def _request(

supabase_functions/_sync/functions_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ def __init__(self, url: str, headers: Dict, timeout: int, verify: bool = True):
1717
base_url=self.url,
1818
headers=self.headers,
1919
verify=bool(verify),
20-
follow_redirects=True,
2120
timeout=timeout,
21+
follow_redirects=True,
22+
http2=True,
2223
)
2324

2425
def _request(

0 commit comments

Comments
 (0)