Skip to content

Commit

Permalink
Merge pull request #60 from permitio/rk/bump-broadcaster-0.2.3
Browse files Browse the repository at this point in the history
Version 0.3.4
  • Loading branch information
roekatz authored Jun 20, 2023
2 parents 36b9dc1 + 75e353e commit 8c08e11
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fastapi-websocket-rpc>=0.1.24,<1
permit-broadcaster[redis,postgres,kafka]==0.2.2
permit-broadcaster[redis,postgres,kafka]==0.2.3
pydantic>=1.9.1,<2
websockets>=10.3,<11
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
from setuptools import setup, find_packages


def get_requirements(env=""):
if env:
env = "-{}".format(env)
with open("requirements{}.txt".format(env)) as fp:
return [x.strip() for x in fp.read().split("\n") if not x.startswith("#")]


with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='fastapi_websocket_pubsub',
version='0.3.3',
author='Or Weis',
name="fastapi_websocket_pubsub",
version="0.3.4",
author="Or Weis",
author_email="[email protected]",
description="A fast and durable PubSub channel over Websockets (using fastapi-websockets-rpc).",
long_description_content_type="text/markdown",
Expand All @@ -24,8 +26,8 @@ def get_requirements(env=""):
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI"
"Topic :: Internet :: WWW/HTTP :: WSGI",
],
python_requires='>=3.7',
python_requires=">=3.8",
install_requires=get_requirements(),
)

0 comments on commit 8c08e11

Please sign in to comment.