Compare commits
21 Commits
Author | SHA1 | Date | |
---|---|---|---|
e474a3ad80 | |||
519e728c73 | |||
4f30f5472e | |||
9f610c653b | |||
8f1d7289be | |||
27395329c6 | |||
c69b7f4e4b | |||
2be72b6705 | |||
5241c65eb0 | |||
3a2c5e5b72 | |||
c072b5e1bc | |||
1c6fcf6cff | |||
ade4b22637 | |||
0e708bdba5 | |||
19d1a15af4 | |||
44327b3a04 | |||
af313a12a0 | |||
e4aee29756 | |||
1eb9585c4a | |||
9018e46a6d | |||
0fefd170f7 |
21
poetry.lock
generated
21
poetry.lock
generated
@ -686,13 +686,13 @@ files = [
|
||||
|
||||
[[package]]
|
||||
name = "pytest"
|
||||
version = "8.3.2"
|
||||
version = "8.3.3"
|
||||
description = "pytest: simple powerful testing with Python"
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "pytest-8.3.2-py3-none-any.whl", hash = "sha256:4ba08f9ae7dcf84ded419494d229b48d0903ea6407b030eaec46df5e6a73bba5"},
|
||||
{file = "pytest-8.3.2.tar.gz", hash = "sha256:c132345d12ce551242c87269de812483f5bcc87cdbb4722e48487ba194f9fdce"},
|
||||
{file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"},
|
||||
{file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
@ -801,13 +801,13 @@ requests = ">=2.0.1,<3.0.0"
|
||||
|
||||
[[package]]
|
||||
name = "sentry-sdk"
|
||||
version = "2.12.0"
|
||||
version = "2.14.0"
|
||||
description = "Python client for Sentry (https://sentry.io)"
|
||||
optional = false
|
||||
python-versions = ">=3.6"
|
||||
files = [
|
||||
{file = "sentry_sdk-2.12.0-py2.py3-none-any.whl", hash = "sha256:7a8d5163d2ba5c5f4464628c6b68f85e86972f7c636acc78aed45c61b98b7a5e"},
|
||||
{file = "sentry_sdk-2.12.0.tar.gz", hash = "sha256:8763840497b817d44c49b3fe3f5f7388d083f2337ffedf008b2cdb63b5c86dc6"},
|
||||
{file = "sentry_sdk-2.14.0-py2.py3-none-any.whl", hash = "sha256:b8bc3dc51d06590df1291b7519b85c75e2ced4f28d9ea655b6d54033503b5bf4"},
|
||||
{file = "sentry_sdk-2.14.0.tar.gz", hash = "sha256:1e0e2eaf6dad918c7d1e0edac868a7bf20017b177f242cefe2a6bcd47955961d"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
@ -834,6 +834,7 @@ httpx = ["httpx (>=0.16.0)"]
|
||||
huey = ["huey (>=2)"]
|
||||
huggingface-hub = ["huggingface-hub (>=0.22)"]
|
||||
langchain = ["langchain (>=0.0.210)"]
|
||||
litestar = ["litestar (>=2.0.0)"]
|
||||
loguru = ["loguru (>=0.5)"]
|
||||
openai = ["openai (>=1.0.0)", "tiktoken (>=0.3.0)"]
|
||||
opentelemetry = ["opentelemetry-distro (>=0.35b0)"]
|
||||
@ -915,13 +916,13 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess
|
||||
|
||||
[[package]]
|
||||
name = "webex-bot"
|
||||
version = "0.5.1"
|
||||
version = "0.5.2"
|
||||
description = "Python package for a Webex Bot based on websockets."
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "webex_bot-0.5.1-py2.py3-none-any.whl", hash = "sha256:f77b239fb8bb4ab2524410a8132a9adef69f3f504c24ceb46ab2d8fae72193d3"},
|
||||
{file = "webex_bot-0.5.1.tar.gz", hash = "sha256:bb2da7080633e6a3429cdca299e3bfa56fad2d45071de80fcc2baf6b6e1fb018"},
|
||||
{file = "webex_bot-0.5.2-py2.py3-none-any.whl", hash = "sha256:1ccde69de4f44bf4ad4d3c9dcc41666c09d0ff40326155f13a4213732352783e"},
|
||||
{file = "webex_bot-0.5.2.tar.gz", hash = "sha256:6b381d4ed0ba500d5f1d3e96a68db599ac38466f66d98afda8762cf66138f9ff"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
@ -1032,4 +1033,4 @@ files = [
|
||||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = "^3.11.2"
|
||||
content-hash = "ebd1d62ff6880f16d53384be98621d360ef71cdb7ba4f931bfd23be4b7aa35ca"
|
||||
content-hash = "0dbe308cc6e108128e228b0f9a8e753196c3a9134c8c2509c1768f3afa555c77"
|
||||
|
@ -7,16 +7,16 @@ readme = "README.md"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.11.2"
|
||||
webex-bot = "^0.5.1"
|
||||
webex-bot = "^0.5.2"
|
||||
pillow = "^10.4.0"
|
||||
sentry-sdk = "^2.12.0"
|
||||
sentry-sdk = "^2.14.0"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
black = "^24.8.0"
|
||||
coverage = "^7.6.1"
|
||||
pylint = "^3.2.6"
|
||||
pylint-exit = "^1.2.0"
|
||||
pytest = "^8.3.2"
|
||||
pytest = "^8.3.3"
|
||||
pre-commit = "^3.8.0"
|
||||
|
||||
[build-system]
|
||||
|
@ -6,7 +6,7 @@ colorama==0.4.6 ; sys_platform == "win32" or platform_system == "Windows"
|
||||
coverage==7.6.1
|
||||
dill==0.3.8
|
||||
distlib==0.3.8
|
||||
filelock==3.15.4
|
||||
filelock==3.16.0
|
||||
identify==2.6.0
|
||||
iniconfig==2.0.0
|
||||
isort==5.13.2
|
||||
@ -16,15 +16,15 @@ mypy-extensions==1.0.0
|
||||
nodeenv==1.9.1
|
||||
packaging==24.1
|
||||
pathspec==0.12.1
|
||||
platformdirs==4.2.2
|
||||
platformdirs==4.3.2
|
||||
pluggy==1.5.0
|
||||
pre-commit==3.8.0
|
||||
pylint==3.2.6
|
||||
pylint-exit==1.2.0
|
||||
pytest==8.3.2
|
||||
pytest==8.3.3
|
||||
PyYAML==6.0.2
|
||||
setuptools==72.1.0
|
||||
tomlkit==0.13.0
|
||||
virtualenv==20.26.3
|
||||
setuptools==74.1.2
|
||||
tomlkit==0.13.2
|
||||
virtualenv==20.26.4
|
||||
wrapt==1.16.0
|
||||
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
|
||||
|
@ -1,17 +1,17 @@
|
||||
backoff==2.2.1
|
||||
certifi==2024.7.4
|
||||
certifi==2024.8.30
|
||||
charset-normalizer==3.3.2
|
||||
coloredlogs==15.0.1
|
||||
future==1.0.0
|
||||
humanfriendly==10.0
|
||||
idna==3.7
|
||||
idna==3.8
|
||||
pillow==10.4.0
|
||||
PyJWT==2.9.0
|
||||
requests==2.32.3
|
||||
requests-toolbelt==1.0.0
|
||||
sentry-sdk==2.12.0
|
||||
tomlkit==0.13.0
|
||||
urllib3==2.2.2
|
||||
webex-bot==0.5.1
|
||||
sentry-sdk==2.14.0
|
||||
tomlkit==0.13.2
|
||||
urllib3==2.2.3
|
||||
webex-bot==0.5.2
|
||||
webexteamssdk==1.6.1
|
||||
websockets==11.0.3
|
||||
|
Reference in New Issue
Block a user