Skip to content

Commit f636a79

Browse files
authored
Remove unused deps (pinecone-io#237)
## Problem Some dependencies not being used. ## Solution Remove unused deps with `poetry remove`: - `pyyaml` - `pythondns` - `loguru` ## Type of Change - [x] Infrastructure change (CI configs, etc)
1 parent e73726d commit f636a79

File tree

2 files changed

+2
-115
lines changed

2 files changed

+2
-115
lines changed

poetry.lock

+1-111
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,7 @@ classifiers=[
5656
[tool.poetry.dependencies]
5757
python = ">=3.8,<4.0"
5858
requests = "^2.31.0"
59-
pyyaml = ">=5.4"
60-
loguru = "0.5.3"
6159
typing-extensions = ">=3.7.4"
62-
dnspython = ">=2.0.0"
6360
python-dateutil = ">=2.5.3"
6461
urllib3 = "1.25.3"
6562
tqdm = ">=4.64.1"
@@ -81,14 +78,14 @@ urllib3_mock = "0.3.3"
8178
responses = ">=0.8.1"
8279
pandas = ">=1.3.5"
8380

81+
[tool.poetry.extras]
8482
# Poetry's concept of extras is what allows us to separate the gRPC dependencies,
8583
# which will only be installed if you run `poetry install --extras "grpc"`,
8684
# from the base dependencies.
8785
#
8886
# Note that Poetry expects the dependencies to be defined in either tool.poetry.dependencies
8987
# or tool.poetry.group.dev.dependencies, but they're only referenced by name in the grpc entry under
9088
# tool.poetry.extras
91-
[tool.poetry.extras]
9289
grpc = ["grpcio", "grpc-gateway-protoc-gen-openapiv2", "googleapis-common-protos", "lz4", "protobuf"]
9390

9491
[build-system]

0 commit comments

Comments
 (0)