Skip to content

Commit d4f11ef

Browse files
authored
Release 0.8.0 (#17)
1 parent 484c160 commit d4f11ef

File tree

4 files changed

+18
-16
lines changed

4 files changed

+18
-16
lines changed

compile_proto.sh

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,12 @@
33
# Terminate on errors
44
set -e
55

6-
76
printf "Synchronising submodules... "
8-
git submodule sync --recursive >> /dev/null
9-
git submodule update --recursive --remote --init >> /dev/null
7+
git submodule sync --recursive >>/dev/null
8+
git submodule update --recursive --remote --init >>/dev/null
109
printf "DONE\n\n"
1110

1211
server_file="./protos/fishjam/server_notifications.proto"
1312
printf "Compiling: file $server_file\n"
1413
protoc -I . --python_betterproto_out=./fishjam/events/_protos $server_file
1514
printf "\tDONE\n"
16-
17-
peer_file="./protos/fishjam/peer_notifications.proto"
18-
printf "Compiling: file $peer_file\n"
19-
protoc -I . --python_betterproto_out=./tests/support/protos $peer_file
20-
printf "\tDONE\n"

fishjam/events/_protos/fishjam/__init__.py

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fishjam-server-sdk"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "Python server SDK for the Fishjam Cloud"
55
authors = ["Fishjam Team"]
66
homepage = "https://github.com/fishjam-cloud/python-server-sdk"
@@ -62,11 +62,19 @@ ignore = []
6262

6363
[tool.pytest.ini_options]
6464
markers = [
65-
"file_component_sources: Tests requiring files uploaded for File Component"
65+
"file_component_sources: Tests requiring files uploaded for File Component",
6666
]
6767

6868
[tool.pyright]
69-
exclude = ["**/.venv", "**/__pycache__", ".pytest_cache", ".ruff_cache", "lib", "fishjam/_openapi_client", "tests"]
69+
exclude = [
70+
"**/.venv",
71+
"**/__pycache__",
72+
".pytest_cache",
73+
".ruff_cache",
74+
"lib",
75+
"fishjam/_openapi_client",
76+
"tests",
77+
]
7078
typeCheckingMode = "basic"
7179
venv = ".venv"
7280
venvPath = "."

0 commit comments

Comments
 (0)