build(pyproject.toml): drop certifi dependency (unused)

This commit is contained in:
Krrish Dholakia 2024-01-10 08:09:03 +05:30
parent ee49e70018
commit ebe752fb61
3 changed files with 5 additions and 7 deletions

View file

@ -1,6 +1,6 @@
## This is a template base class to be used for adding new LLM providers via API calls ## This is a template base class to be used for adding new LLM providers via API calls
import litellm import litellm
import httpx, certifi, ssl import httpx
from typing import Optional from typing import Optional

9
poetry.lock generated
View file

@ -1,4 +1,4 @@
# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. # This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand.
[[package]] [[package]]
name = "aiohttp" name = "aiohttp"
@ -1238,7 +1238,7 @@ files = [
[package.dependencies] [package.dependencies]
numpy = [ numpy = [
{version = ">=1.20.3", markers = "python_version < \"3.10\""}, {version = ">=1.20.3", markers = "python_version < \"3.10\""},
{version = ">=1.21.0", markers = "python_version >= \"3.10\" and python_version < \"3.11\""}, {version = ">=1.21.0", markers = "python_version >= \"3.10\""},
{version = ">=1.23.2", markers = "python_version >= \"3.11\""}, {version = ">=1.23.2", markers = "python_version >= \"3.11\""},
] ]
python-dateutil = ">=2.8.2" python-dateutil = ">=2.8.2"
@ -2663,11 +2663,10 @@ docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.link
testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"]
[extras] [extras]
extra-proxy = [] extra-proxy = ["streamlit"]
proxy = ["backoff", "fastapi", "orjson", "pyyaml", "rq", "uvicorn"] proxy = ["backoff", "fastapi", "orjson", "pyyaml", "rq", "uvicorn"]
proxy-ui = ["streamlit"]
[metadata] [metadata]
lock-version = "2.0" lock-version = "2.0"
python-versions = ">=3.8.1,<3.9.7 || >3.9.7" python-versions = ">=3.8.1,<3.9.7 || >3.9.7"
content-hash = "58c07c1924b5609baf794e09bf6fa8a51ee4cdcc21a25156a3a3f9dc246992bf" content-hash = "9f15083d98fe14237abea81eaca802e1db28cfb89bbe127498aa1fabb3c99849"

View file

@ -15,7 +15,6 @@ importlib-metadata = ">=6.8.0"
tokenizers = "*" tokenizers = "*"
click = "*" click = "*"
jinja2 = "^3.1.2" jinja2 = "^3.1.2"
certifi = "^2023.7.22"
aiohttp = "*" aiohttp = "*"
uvicorn = {version = "^0.22.0", optional = true} uvicorn = {version = "^0.22.0", optional = true}