Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
c072b5e1bc | |||
1c6fcf6cff | |||
ade4b22637 | |||
0e708bdba5 | |||
19d1a15af4 | |||
44327b3a04 | |||
af313a12a0 | |||
e4aee29756 | |||
1eb9585c4a | |||
9018e46a6d | |||
0fefd170f7 |
15
poetry.lock
generated
15
poetry.lock
generated
@ -801,13 +801,13 @@ requests = ">=2.0.1,<3.0.0"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sentry-sdk"
|
name = "sentry-sdk"
|
||||||
version = "2.12.0"
|
version = "2.13.0"
|
||||||
description = "Python client for Sentry (https://sentry.io)"
|
description = "Python client for Sentry (https://sentry.io)"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.6"
|
python-versions = ">=3.6"
|
||||||
files = [
|
files = [
|
||||||
{file = "sentry_sdk-2.12.0-py2.py3-none-any.whl", hash = "sha256:7a8d5163d2ba5c5f4464628c6b68f85e86972f7c636acc78aed45c61b98b7a5e"},
|
{file = "sentry_sdk-2.13.0-py2.py3-none-any.whl", hash = "sha256:6beede8fc2ab4043da7f69d95534e320944690680dd9a963178a49de71d726c6"},
|
||||||
{file = "sentry_sdk-2.12.0.tar.gz", hash = "sha256:8763840497b817d44c49b3fe3f5f7388d083f2337ffedf008b2cdb63b5c86dc6"},
|
{file = "sentry_sdk-2.13.0.tar.gz", hash = "sha256:8d4a576f7a98eb2fdb40e13106e41f330e5c79d72a68be1316e7852cf4995260"},
|
||||||
]
|
]
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
@ -834,6 +834,7 @@ httpx = ["httpx (>=0.16.0)"]
|
|||||||
huey = ["huey (>=2)"]
|
huey = ["huey (>=2)"]
|
||||||
huggingface-hub = ["huggingface-hub (>=0.22)"]
|
huggingface-hub = ["huggingface-hub (>=0.22)"]
|
||||||
langchain = ["langchain (>=0.0.210)"]
|
langchain = ["langchain (>=0.0.210)"]
|
||||||
|
litestar = ["litestar (>=2.0.0)"]
|
||||||
loguru = ["loguru (>=0.5)"]
|
loguru = ["loguru (>=0.5)"]
|
||||||
openai = ["openai (>=1.0.0)", "tiktoken (>=0.3.0)"]
|
openai = ["openai (>=1.0.0)", "tiktoken (>=0.3.0)"]
|
||||||
opentelemetry = ["opentelemetry-distro (>=0.35b0)"]
|
opentelemetry = ["opentelemetry-distro (>=0.35b0)"]
|
||||||
@ -915,13 +916,13 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "webex-bot"
|
name = "webex-bot"
|
||||||
version = "0.5.1"
|
version = "0.5.2"
|
||||||
description = "Python package for a Webex Bot based on websockets."
|
description = "Python package for a Webex Bot based on websockets."
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.8"
|
python-versions = ">=3.8"
|
||||||
files = [
|
files = [
|
||||||
{file = "webex_bot-0.5.1-py2.py3-none-any.whl", hash = "sha256:f77b239fb8bb4ab2524410a8132a9adef69f3f504c24ceb46ab2d8fae72193d3"},
|
{file = "webex_bot-0.5.2-py2.py3-none-any.whl", hash = "sha256:1ccde69de4f44bf4ad4d3c9dcc41666c09d0ff40326155f13a4213732352783e"},
|
||||||
{file = "webex_bot-0.5.1.tar.gz", hash = "sha256:bb2da7080633e6a3429cdca299e3bfa56fad2d45071de80fcc2baf6b6e1fb018"},
|
{file = "webex_bot-0.5.2.tar.gz", hash = "sha256:6b381d4ed0ba500d5f1d3e96a68db599ac38466f66d98afda8762cf66138f9ff"},
|
||||||
]
|
]
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
@ -1032,4 +1033,4 @@ files = [
|
|||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.0"
|
lock-version = "2.0"
|
||||||
python-versions = "^3.11.2"
|
python-versions = "^3.11.2"
|
||||||
content-hash = "ebd1d62ff6880f16d53384be98621d360ef71cdb7ba4f931bfd23be4b7aa35ca"
|
content-hash = "2ce5d37a748074055032d26285cbea4281aa579e521d957aace68fa290d9e42d"
|
||||||
|
@ -7,9 +7,9 @@ readme = "README.md"
|
|||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.11.2"
|
python = "^3.11.2"
|
||||||
webex-bot = "^0.5.1"
|
webex-bot = "^0.5.2"
|
||||||
pillow = "^10.4.0"
|
pillow = "^10.4.0"
|
||||||
sentry-sdk = "^2.12.0"
|
sentry-sdk = "^2.13.0"
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
black = "^24.8.0"
|
black = "^24.8.0"
|
||||||
|
@ -23,8 +23,8 @@ pylint==3.2.6
|
|||||||
pylint-exit==1.2.0
|
pylint-exit==1.2.0
|
||||||
pytest==8.3.2
|
pytest==8.3.2
|
||||||
PyYAML==6.0.2
|
PyYAML==6.0.2
|
||||||
setuptools==72.1.0
|
setuptools==74.0.0
|
||||||
tomlkit==0.13.0
|
tomlkit==0.13.2
|
||||||
virtualenv==20.26.3
|
virtualenv==20.26.3
|
||||||
wrapt==1.16.0
|
wrapt==1.16.0
|
||||||
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
|
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
backoff==2.2.1
|
backoff==2.2.1
|
||||||
certifi==2024.7.4
|
certifi==2024.8.30
|
||||||
charset-normalizer==3.3.2
|
charset-normalizer==3.3.2
|
||||||
coloredlogs==15.0.1
|
coloredlogs==15.0.1
|
||||||
future==1.0.0
|
future==1.0.0
|
||||||
humanfriendly==10.0
|
humanfriendly==10.0
|
||||||
idna==3.7
|
idna==3.8
|
||||||
pillow==10.4.0
|
pillow==10.4.0
|
||||||
PyJWT==2.9.0
|
PyJWT==2.9.0
|
||||||
requests==2.32.3
|
requests==2.32.3
|
||||||
requests-toolbelt==1.0.0
|
requests-toolbelt==1.0.0
|
||||||
sentry-sdk==2.12.0
|
sentry-sdk==2.13.0
|
||||||
tomlkit==0.13.0
|
tomlkit==0.13.2
|
||||||
urllib3==2.2.2
|
urllib3==2.2.2
|
||||||
webex-bot==0.5.1
|
webex-bot==0.5.2
|
||||||
webexteamssdk==1.6.1
|
webexteamssdk==1.6.1
|
||||||
websockets==11.0.3
|
websockets==11.0.3
|
||||||
|
Reference in New Issue
Block a user