cortexdbai 0.2.4__tar.gz → 0.2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/PKG-INFO +3 -5
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/cortexdb/__init__.py +1 -1
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/pyproject.toml +12 -6
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/.gitignore +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/README.md +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/cortexdb/client.py +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/cortexdb/exceptions.py +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/cortexdb/models.py +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/cortexdb/py.typed +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/cortexdb/v1/__init__.py +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/cortexdb/v1/client.py +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/cortexdb/v1/exceptions.py +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/tests/__init__.py +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/tests/conftest.py +0 -0
- {cortexdbai-0.2.4 → cortexdbai-0.2.5}/tests/test_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cortexdbai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: The Long-Term Memory Layer for AI Systems
|
|
5
5
|
Project-URL: Homepage, https://cortexdb.ai
|
|
6
6
|
Project-URL: Documentation, https://docs.cortexdb.ai
|
|
@@ -10,11 +10,9 @@ Project-URL: Changelog, https://github.com/cortexdb/cortexdb/blob/main/CHANGELOG
|
|
|
10
10
|
Author-email: Prashant Malik <prashant@cortexdb.ai>
|
|
11
11
|
License-Expression: Apache-2.0
|
|
12
12
|
Keywords: ai,cortexdb,event-sourcing,knowledge-graph,llm,memory
|
|
13
|
-
Classifier: Development Status ::
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
15
|
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
18
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -22,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
22
20
|
Classifier: Topic :: Database
|
|
23
21
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
24
22
|
Classifier: Typing :: Typed
|
|
25
|
-
Requires-Python: >=3.
|
|
23
|
+
Requires-Python: >=3.10
|
|
26
24
|
Requires-Dist: httpx>=0.24
|
|
27
25
|
Requires-Dist: pydantic>=2.0
|
|
28
26
|
Requires-Dist: requests>=2.31
|
|
@@ -4,21 +4,27 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "cortexdbai"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.5"
|
|
8
8
|
description = "The Long-Term Memory Layer for AI Systems"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
11
|
-
|
|
11
|
+
# 3.10+: the v1 module uses PEP 604 unions (`str | None`) in TypedDict
|
|
12
|
+
# field annotations, which Python 3.9 cannot evaluate at class-definition
|
|
13
|
+
# time even with `from __future__ import annotations`. Python 3.9 hit
|
|
14
|
+
# end-of-life on 2025-10-31. Declaring >=3.10 means `pip install
|
|
15
|
+
# cortexdbai` on 3.9 fails immediately with a clear "requires Python
|
|
16
|
+
# 3.10+" error from pip — not a silent install followed by an obscure
|
|
17
|
+
# `TypeError: Unable to evaluate type annotation 'str | None'` on the
|
|
18
|
+
# first import.
|
|
19
|
+
requires-python = ">=3.10"
|
|
12
20
|
authors = [
|
|
13
21
|
{ name = "Prashant Malik", email = "prashant@cortexdb.ai" },
|
|
14
22
|
]
|
|
15
23
|
keywords = ["ai", "memory", "llm", "knowledge-graph", "event-sourcing", "cortexdb"]
|
|
16
24
|
classifiers = [
|
|
17
|
-
"Development Status ::
|
|
25
|
+
"Development Status :: 4 - Beta",
|
|
18
26
|
"Intended Audience :: Developers",
|
|
19
|
-
"License :: OSI Approved :: Apache Software License",
|
|
20
27
|
"Programming Language :: Python :: 3",
|
|
21
|
-
"Programming Language :: Python :: 3.9",
|
|
22
28
|
"Programming Language :: Python :: 3.10",
|
|
23
29
|
"Programming Language :: Python :: 3.11",
|
|
24
30
|
"Programming Language :: Python :: 3.12",
|
|
@@ -55,7 +61,7 @@ Changelog = "https://github.com/cortexdb/cortexdb/blob/main/CHANGELOG.md"
|
|
|
55
61
|
packages = ["cortexdb"]
|
|
56
62
|
|
|
57
63
|
[tool.ruff]
|
|
58
|
-
target-version = "
|
|
64
|
+
target-version = "py310"
|
|
59
65
|
line-length = 100
|
|
60
66
|
|
|
61
67
|
[tool.ruff.lint]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|