Skip to content

Commit f201a0b

Browse files
Bump dependencies and version numbers in setup files
1 parent 9395465 commit f201a0b

4 files changed

Lines changed: 10 additions & 12 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sql-agent-tool"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "A secure SQL tool for AI agents to interact with databases"
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -15,9 +15,8 @@ dependencies = [
1515
"pydantic>=2.0",
1616
"sqlparse>=0.4",
1717
"python-dotenv>=0.20",
18-
"openai",
19-
"google-google-generativeai",
20-
"google"
18+
"openai==1.72.0",
19+
"google-google-generativeai==0.8.4"
2120
]
2221
authors = [
2322
{ name = "Harsh Dadiya", email = "harshdadiya@gmail.com" },

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ python-dotenv==1.1.0
55
setuptools==75.8.0
66
SQLAlchemy==2.0.37
77
sqlparse==0.5.3
8-
openai
9-
groq
10-
google-generativeai
8+
openai==1.72.0
9+
groq==0.22.0
10+
google-generativeai==0.8.4

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="sql-agent-tool", # Package name (must be unique if publishing to PyPI)
5-
version="0.1.4", # Version number
5+
version="0.1.5", # Version number
66
description="A Python tool for interacting with PostgreSQL databases",
77
long_description=open("README.md").read(), # Use README as description
88
long_description_content_type="text/markdown",
@@ -17,9 +17,8 @@
1717
"pydantic>=2.0",
1818
"sqlparse>=0.4",
1919
"python-dotenv>=0.20",
20-
"openai",
21-
"google-google-generativeai",
22-
"google",
20+
"openai==1.72.0",
21+
"google-google-generativeai==0.8.4"
2322
],
2423
python_requires=">=3.10", # Specify minimum Python version
2524
classifiers=[ # Metadata for PyPI (optional)

sql_agent_tool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .core import SQLAgentTool
22
from .models import DatabaseConfig, QueryResult
33

4-
__version__ = "0.1.4"
4+
__version__ = "0.1.5"
55
__all__ = ["SQLAgentTool", "DatabaseConfig", "QueryResult", "LLMConfig"]
66
__author__ = "Harsh Dadiya"

0 commit comments

Comments
 (0)