fix(openai-sdk): cap supermemory to <3.5 so a fresh install imports (#1236)

This commit is contained in:
pawan 2026-08-12 20:56:54 +05:30 committed by GitHub
parent 14bcc92c31
commit 47152afc1d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "supermemory-openai-sdk"
version = "1.0.4"
version = "1.0.5"
description = "Memory tools for OpenAI function calling with supermemory"
readme = "README.md"
license = "MIT"
@ -26,7 +26,7 @@ classifiers = [
requires-python = ">=3.8.1"
dependencies = [
"openai>=1.102.0",
"supermemory>=3.1.0",
"supermemory>=3.1.0,<3.5.0",
"typing-extensions>=4.0.0",
"requests>=2.25.0",
]