Skip to content

Commit

Permalink
Restrict dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiosv committed Sep 23, 2024
1 parent f91ce17 commit 9521995
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ build-backend = "setuptools.build_meta"
name = "pdl"
version = "0.0.1"
dependencies = [
"pydantic",
"ibm-generative-ai",
"requests",
"python-dotenv",
"jinja2",
"PyYAML",
"jsonschema",
"litellm",
"termcolor",
"ipython"
"pydantic~=2",
"ibm-generative-ai~=3",
"requests~=2",
"python-dotenv~=1",
"jinja2~=3",
"PyYAML~=6",
"jsonschema~=4",
"litellm~=1.47",
"termcolor~=2",
"ipython~=8"
]
authors = [
{ name="Mandana Vaziri", email="[email protected]" },
{ name="Louis Mandel", email="[email protected]"},
{ name="Claudio Spiess" },
{ name="Claudio Spiess", email="[email protected]" },
{ name="Martin Hirzel", email="[email protected]" }
]
description = "Prompt Declaration Language"
Expand All @@ -34,22 +34,22 @@ classifiers = [

[project.optional-dependencies]
dev = [
"black",
"pre-commit",
"pytest"
"pre-commit~=3",
"pytest~=8",
"pydantic~=2.9"
]
examples = [
"wikipedia",
"textdistance",
"faiss-cpu",
"datasets",
"sympy"
"wikipedia~=1",
"textdistance~=4",
"faiss-cpu~=1",
"datasets>2,<4",
"sympy~=1"
]
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
"pymdown-extensions"
"mkdocs~=1",
"mkdocstrings[python]~=1",
"mkdocs-material~=9",
"pymdown-extensions~=10"
]
all = [ "pdl[dev,examples,docs]" ]

Expand Down

0 comments on commit 9521995

Please sign in to comment.