From 707659f39e7ab350e582f495d36a389732ea98c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Ro=C5=BCnawski?= Date: Tue, 17 Oct 2023 17:20:48 +0200 Subject: [PATCH] release --- README.md | 3 +-- poetry.lock | 26 +++++++++++--------------- pyproject.toml | 2 +- 3 files changed, 13 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 0903a91..36ee04c 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,8 @@ Read the docs [here](https://jellyfish-dev.github.io/python-server-sdk/jellyfish ## Installation -You can install the latest version of the package from github: ``` -pip install git+https://github.com/jellyfish-dev/python-server-sdk@v0.1.0 +pip install python-server-sdk ``` ## Usage diff --git a/poetry.lock b/poetry.lock index f882031..a7c1a3b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -51,23 +51,19 @@ name = "betterproto" version = "2.0.0b6" description = "A better Protobuf / gRPC generator & library" optional = false -python-versions = "^3.7" -files = [] -develop = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "betterproto-2.0.0b6-py3-none-any.whl", hash = "sha256:a0839ec165d110a69d0d116f4d0e2bec8d186af4db826257931f0831dab73fcf"}, + {file = "betterproto-2.0.0b6.tar.gz", hash = "sha256:720ae92697000f6fcf049c69267d957f0871654c8b0d7458906607685daee784"}, +] [package.dependencies] -grpclib = "^0.4.1" -python-dateutil = "^2.8" +grpclib = ">=0.4.1,<0.5.0" +python-dateutil = ">=2.8,<3.0" [package.extras] compiler = ["black (>=19.3b0)", "isort (>=5.11.5,<6.0.0)", "jinja2 (>=3.0.3)"] -[package.source] -type = "git" -url = "https://github.com/danielgtaylor/python-betterproto.git" -reference = "v.2.0.0b6" -resolved_reference = "098989e9e93c97e16e10257b1b3575f987180f8c" - [[package]] name = "colorama" version = "0.4.6" @@ -109,12 +105,12 @@ test = ["pytest (>=6)"] [[package]] name = "grpclib" -version = "0.4.5" +version = "0.4.6" description = "Pure-Python gRPC implementation for asyncio" optional = false python-versions = ">=3.7" files = [ - {file = "grpclib-0.4.5.tar.gz", hash = "sha256:bf83ed55aca59497e168761d9555056efc54a8f865316c3b39becd007e9f9a73"}, + {file = "grpclib-0.4.6.tar.gz", hash = "sha256:595d05236ca8b8f8e433f5bf6095e6354c1d8777d003ddaf5288efa9611e3fd6"}, ] [package.dependencies] @@ -122,7 +118,7 @@ h2 = ">=3.1.0,<5" multidict = "*" [package.extras] -protobuf = ["protobuf (>=3.15.0)"] +protobuf = ["protobuf (>=3.20.0)"] [[package]] name = "h2" @@ -864,4 +860,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "95a622aeb47fcdb31de58455e05c20208396109a585f335ca99d8ae112438169" +content-hash = "17535ed556dda51c20b5213388608d635ea12b12f63e159c35c1336b1552165d" diff --git a/pyproject.toml b/pyproject.toml index b90b8a2..5baaad0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ urllib3 = ">=1.25.3,<2" pydantic = "<2" aenum = "^3.1.15" python-dateutil = "^2.8.2" -betterproto = { git = "https://github.com/danielgtaylor/python-betterproto.git", rev = "v.2.0.0b6" } +betterproto = "2.0.0b6" [tool.poetry.group.dev.dependencies] pdoc = "^14.1.0"