Skip to content

Commit 8c08e11

Browse files
authored
Merge pull request #60 from permitio/rk/bump-broadcaster-0.2.3
Version 0.3.4
2 parents 36b9dc1 + 75e353e commit 8c08e11

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
19+
python-version: ["3.8", "3.9", "3.10", "3.11"]
2020

2121
steps:
2222
- uses: actions/checkout@v2

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
fastapi-websocket-rpc>=0.1.24,<1
2-
permit-broadcaster[redis,postgres,kafka]==0.2.2
2+
permit-broadcaster[redis,postgres,kafka]==0.2.3
33
pydantic>=1.9.1,<2
44
websockets>=10.3,<11

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
from setuptools import setup, find_packages
22

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

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

1214
setup(
13-
name='fastapi_websocket_pubsub',
14-
version='0.3.3',
15-
author='Or Weis',
15+
name="fastapi_websocket_pubsub",
16+
version="0.3.4",
17+
author="Or Weis",
1618
author_email="or@permit.io",
1719
description="A fast and durable PubSub channel over Websockets (using fastapi-websockets-rpc).",
1820
long_description_content_type="text/markdown",
@@ -24,8 +26,8 @@ def get_requirements(env=""):
2426
"License :: OSI Approved :: MIT License",
2527
"Operating System :: OS Independent",
2628
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
27-
"Topic :: Internet :: WWW/HTTP :: WSGI"
29+
"Topic :: Internet :: WWW/HTTP :: WSGI",
2830
],
29-
python_requires='>=3.7',
31+
python_requires=">=3.8",
3032
install_requires=get_requirements(),
3133
)

0 commit comments

Comments
 (0)