Skip to content

Commit

Permalink
Merge pull request #57 from supabase-community/j0/new_release
Browse files Browse the repository at this point in the history
feat: add new release, drop support for 3.7, add 3.11 to CI
  • Loading branch information
J0 committed Feb 5, 2023
2 parents 02ca2cf + 0e8699a commit 3b4f40f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
python-version: [3.8, 3.9, '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tool.poetry]
name = "realtime"
version = "0.0.5"
version = "1.0.0"
description = ""
authors = ["Joel"]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
websockets = "^10.3"
python-dateutil = "^2.8.1"
typing-extensions = "^4.2.0"
Expand Down
3 changes: 2 additions & 1 deletion realtime/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
__version__ = "0.0.5"

__version__ = "1.0.0"

from realtime.channel import CallbackListener, Channel
from realtime.connection import Socket
Expand Down

0 comments on commit 3b4f40f

Please sign in to comment.