Fix: PEP 440 version format for graphiti-core-varming
- Changed version from 0.23.1-varming.1 to 0.23.1+varming.1 (local version identifier) - Updated all dependency references in mcp_server to use >=0.23.1 (compatible with +varming.1) - Hyphens are not allowed in Python package versions per PEP 440 - Plus sign (+) is the correct separator for local version identifiers 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
63f9989b37
commit
f080d85668
2 changed files with 5 additions and 5 deletions
|
|
@ -31,7 +31,7 @@ classifiers = [
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"mcp>=1.21.0",
|
"mcp>=1.21.0",
|
||||||
"openai>=1.91.0",
|
"openai>=1.91.0",
|
||||||
"graphiti-core-varming>=0.23.1-varming.1", # Varming fork with database parameter fix
|
"graphiti-core-varming>=0.23.1", # Varming fork with database parameter fix (0.23.1+varming.1)
|
||||||
"pydantic-settings>=2.0.0",
|
"pydantic-settings>=2.0.0",
|
||||||
"pyyaml>=6.0",
|
"pyyaml>=6.0",
|
||||||
]
|
]
|
||||||
|
|
@ -46,7 +46,7 @@ Issues = "https://github.com/Varming73/graphiti/issues"
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
# FalkorDB support (Neo4j is included in graphiti-core-varming by default)
|
# FalkorDB support (Neo4j is included in graphiti-core-varming by default)
|
||||||
falkordb = ["graphiti-core-varming[falkordb]>=0.23.1-varming.1"]
|
falkordb = ["graphiti-core-varming[falkordb]>=0.23.1"]
|
||||||
|
|
||||||
# Azure support
|
# Azure support
|
||||||
azure = [
|
azure = [
|
||||||
|
|
@ -72,7 +72,7 @@ providers = [
|
||||||
|
|
||||||
# All optional features
|
# All optional features
|
||||||
all = [
|
all = [
|
||||||
"graphiti-core-varming[falkordb]>=0.23.1-varming.1",
|
"graphiti-core-varming[falkordb]>=0.23.1",
|
||||||
"azure-identity>=1.21.0",
|
"azure-identity>=1.21.0",
|
||||||
"google-genai>=1.8.0",
|
"google-genai>=1.8.0",
|
||||||
"anthropic>=0.49.0",
|
"anthropic>=0.49.0",
|
||||||
|
|
@ -82,7 +82,7 @@ all = [
|
||||||
]
|
]
|
||||||
|
|
||||||
dev = [
|
dev = [
|
||||||
"graphiti-core-varming>=0.23.1-varming.1",
|
"graphiti-core-varming>=0.23.1",
|
||||||
"httpx>=0.28.1",
|
"httpx>=0.28.1",
|
||||||
"mcp>=1.21.0",
|
"mcp>=1.21.0",
|
||||||
"pyright>=1.1.404",
|
"pyright>=1.1.404",
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[project]
|
[project]
|
||||||
name = "graphiti-core-varming"
|
name = "graphiti-core-varming"
|
||||||
description = "A temporal graph building library (Varming fork with database parameter fix)"
|
description = "A temporal graph building library (Varming fork with database parameter fix)"
|
||||||
version = "0.23.1-varming.1"
|
version = "0.23.1+varming.1"
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "Paul Paliychuk", email = "paul@getzep.com" },
|
{ name = "Paul Paliychuk", email = "paul@getzep.com" },
|
||||||
{ name = "Preston Rasmussen", email = "preston@getzep.com" },
|
{ name = "Preston Rasmussen", email = "preston@getzep.com" },
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue