Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit 3b4f40f

Browse files
authored
Merge pull request #57 from supabase-community/j0/new_release
feat: add new release, drop support for 3.7, add 3.11 to CI
2 parents 02ca2cf + 0e8699a commit 3b4f40f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.7, 3.8, 3.9, '3.10']
10+
python-version: [3.8, 3.9, '3.10', '3.11']
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v2

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tool.poetry]
22
name = "realtime"
3-
version = "0.0.5"
3+
version = "1.0.0"
44
description = ""
55
authors = ["Joel"]
66

77
[tool.poetry.dependencies]
8-
python = "^3.7"
8+
python = "^3.8"
99
websockets = "^10.3"
1010
python-dateutil = "^2.8.1"
1111
typing-extensions = "^4.2.0"

realtime/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
__version__ = "0.0.5"
1+
2+
__version__ = "1.0.0"
23

34
from realtime.channel import CallbackListener, Channel
45
from realtime.connection import Socket

0 commit comments

Comments
 (0)