surreal-orm-lite 0.6.2__tar.gz → 0.6.4__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.
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/Makefile +8 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/PKG-INFO +1 -1
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/pyproject.toml +1 -1
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/__init__.py +1 -1
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/.gitignore +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/CHANGELOG.md +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/LICENSE +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/README.md +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/__init__.py +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/aggregations.py +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/connection_manager.py +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/constants.py +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/enum.py +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/exceptions.py +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/model_base.py +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/py.typed +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/q.py +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/query_set.py +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/signals.py +0 -0
- {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/utils.py +0 -0
|
@@ -44,5 +44,13 @@ test-all-python:
|
|
|
44
44
|
html: test-all-python
|
|
45
45
|
uv run coverage html -d htmlcov
|
|
46
46
|
|
|
47
|
+
.PHONY: sync-version # Fix all version references to match pyproject.toml
|
|
48
|
+
sync-version:
|
|
49
|
+
uv run python scripts/sync_version.py --fix
|
|
50
|
+
|
|
51
|
+
.PHONY: check-version # Check that all version references are in sync
|
|
52
|
+
check-version:
|
|
53
|
+
uv run python scripts/sync_version.py
|
|
54
|
+
|
|
47
55
|
.PHONY: all
|
|
48
56
|
all: format mypy lint typecheck test-all-python
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: surreal-orm-lite
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.4
|
|
4
4
|
Summary: Lightweight Django-style ORM for SurrealDB using the official Python SDK. Async support with Pydantic validation.
|
|
5
5
|
Project-URL: Homepage, https://github.com/EulogySnowfall/SurrealDB-ORM-lite
|
|
6
6
|
Project-URL: Documentation, https://github.com/EulogySnowfall/SurrealDB-ORM-lite
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/connection_manager.py
RENAMED
|
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
|