Skip to content

Commit 3b6beb8

Browse files
committed
⬆️ v0.0.16
- fix leaking aiohttp session - update package config
1 parent 2ef69b9 commit 3b6beb8

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

pyproject.toml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
[tool.poetry]
22
name = "codeboxapi"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
authors = ["Shroominic <[email protected]>"]
55
license = "MIT"
6-
description = "CodeBox is the simplest cloud infrastructure for your LLM Apps and Services."
6+
description = "CodeBox is a sandboxed python environment for your LLM Agents."
77
keywords = ["codebox", "api", "cloud", "cloud-infra", "llm", "apps", "codeinterpreterapi"]
88
readme = "README.md"
99
homepage = "https://codeboxapi.com/"
10-
documentation = "https://codeboxapi.com/docs/"
10+
documentation = "https://codeboxapi.com/docs"
1111
repository = "https://github.com/shroominic/codebox-api"
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.9"
1515
pydantic = "^1"
16-
requests = "^2.27.1"
17-
aiohttp = "^3.8.4"
18-
websockets = "^11.0.3"
19-
python-dotenv = "^1.0.0"
16+
requests = "^2.27"
17+
aiohttp = "^3.8"
18+
websockets = "^11"
19+
python-dotenv = "^1"
2020
jupyter-kernel-gateway = { version = "^2", optional = true }
2121
Pillow = { version = "^9", optional = true }
2222

@@ -25,9 +25,15 @@ all = ["jupyter-kernel-gateway", "Pillow"]
2525
local_support = ["jupyter-kernel-gateway"]
2626
image_support = ["Pillow"]
2727

28+
[tool.poetry.group.dev]
29+
optional = true
30+
2831
[tool.poetry.group.dev.dependencies]
29-
pytest = "^7.4.0"
30-
pre-commit = "^3.3"
32+
pytest = "^7"
33+
mypy = "^1.4"
34+
black = "^23"
35+
flake8 = "^6"
36+
pre-commit = "^3"
3137

3238
[tool.poetry.group.docs]
3339
optional = true

0 commit comments

Comments
 (0)