Skip to content

Commit c2eed40

Browse files
authored
fix: remove typing-extensions (#965)
1 parent c36d80f commit c2eed40

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ conda activate supabase-py
3636

3737
### PyPi installation
3838

39-
Install the package (for Python > 3.7):
39+
Install the package (for Python >= 3.9):
4040

4141
```bash
4242
# with pip

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ gotrue = "^2.9.0"
2222
httpx = ">=0.26,<0.28"
2323
storage3 = "^0.8.0"
2424
supafunc = "^0.6.0"
25-
typing-extensions = "^4.12.2"
2625

2726
[tool.poetry.dev-dependencies]
2827
pre-commit = "^3.8.0"

supabase/types.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
from typing_extensions import NotRequired, TypedDict
1+
from typing import TypedDict
22

33

44
class RealtimeClientOptions(TypedDict, total=False):
5-
auto_reconnect: NotRequired[bool]
6-
hb_interval: NotRequired[int]
7-
max_retries: NotRequired[int]
8-
initial_backoff: NotRequired[float]
5+
auto_reconnect: bool
6+
hb_interval: int
7+
max_retries: int
8+
initial_backoff: float

0 commit comments

Comments
 (0)