Skip to content

Commit 96c63d7

Browse files
committed
Merge branch 'cicd/fix-splunkbase' of https://github.com/splunk/splunk-sdk-python into cicd/fix-splunkbase
2 parents 6777261 + a7b09bc commit 96c63d7

3 files changed

Lines changed: 104 additions & 117 deletions

File tree

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,27 @@ dependencies = []
3333
# Treat the same as NPM's `dependencies`
3434
[project.optional-dependencies]
3535
compat = ["six>=1.17.0"]
36-
ai = ["httpx==0.28.1", "langchain>=1.2.18", "mcp>=1.27.1", "pydantic>=2.13.4"]
37-
anthropic = ["splunk-sdk[ai]>=3.0.0", "langchain-anthropic>=1.4.3"]
38-
openai = ["splunk-sdk[ai]>=3.0.0", "langchain-openai>=1.2.1"]
36+
ai = ["httpx==0.28.1", "langchain>=1.3.9", "mcp>=1.27.1", "pydantic>=2.13.4"]
37+
anthropic = ["splunk-sdk[ai]>=3.0.0", "langchain-anthropic>=1.4.6"]
38+
openai = ["splunk-sdk[ai]>=3.0.0", "langchain-openai>=1.3.2"]
3939
google = [
4040
"splunk-sdk[ai]>=3.0.0",
41-
"langchain-google-genai==4.2.2",
42-
"google-auth>=2.52.0",
41+
"langchain-google-genai==4.2.5",
42+
"google-auth>=2.55.0",
4343
]
4444

4545
# Treat the same as NPM's `devDependencies`
4646
[dependency-groups]
4747
test = [
4848
"splunk-sdk[openai, anthropic, google]>=3.0.0",
49-
"pytest>=9.0.3",
49+
"pytest>=9.1.0",
5050
"pytest-cov>=7.1.0",
5151
"pytest-asyncio>=1.3.0",
5252
"python-dotenv>=1.2.2",
53-
"vcrpy>=8.1.1",
53+
"vcrpy>=8.2.1",
5454
]
5555
release = ["build>=1.5.0", "jinja2>=3.1.6", "sphinx>=9.1.0", "twine>=6.2.0"]
56-
lint = ["basedpyright>=1.39.4", "ruff>=0.15.12", "mbake>=1.4.6"]
56+
lint = ["basedpyright>=1.39.8", "ruff>=0.15.17", "mbake>=1.4.6"]
5757
dev = [
5858
"rich>=15.0.0",
5959
{ include-group = "test" },

scripts/download_splunk_mcp_server_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def run() -> None:
6565

6666
response = client.get(
6767
result.release.path,
68-
headers={"Authorization": f"Bearer {token}"},
68+
headers={"X-Auth-Token": token},
6969
)
7070
response.raise_for_status()
7171

0 commit comments

Comments
 (0)