Skip to content

Commit cf8b2ae

Browse files
author
Luke Hinds
authored
Merge pull request #13 from StacklokLabs/bump_litellm_dep
fix: bump litellm dependencies
2 parents bc00fa5 + c6ad179 commit cf8b2ae

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[project]
22
name = "promptwright"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "A tool for generating and managing prompts for local LLMs using Ollama"
5-
long_description = "file: README.md"
65
readme = "README.md"
76
requires-python = ">=3.11"
87
dependencies = [

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
certifi==2023.11.17 # Changed to be compatible with litellm's requirement
1+
certifi==2024.7.4
22
charset-normalizer==3.4.0
33
idna==3.10
44
requests==2.32.3
55
tqdm==4.66.5
66
urllib3==2.2.3
77
huggingface-hub==0.26.0
88
datasets==3.0.2
9-
litellm==1.7.12
9+
litellm==1.52.1

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55

66
setup(
77
name="promptwright",
8-
version="1.0.0",
8+
version="1.0.1",
99
packages=find_packages(),
1010
install_requires=[
11-
"certifi>=2023.7.22,<2024.0.0", # Updated to be compatible with litellm
11+
"certifi==2024.7.4", # Updated to be compatible with litellm
1212
"charset-normalizer==3.4.0",
1313
"idna==3.10",
1414
"requests==2.32.3",
1515
"tqdm==4.66.5",
1616
"urllib3==2.2.3",
1717
"huggingface-hub==0.26.0",
1818
"datasets==3.0.2",
19-
"litellm==1.7.12",
19+
"litellm==1.52.1",
2020
],
2121
extras_require={
2222
"dev": [

0 commit comments

Comments
 (0)