commitdb 2.3.0__tar.gz → 2.4.0__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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: commitdb
3
- Version: 2.3.0
4
- Summary: Python driver for CommitDB SQL Server
3
+ Version: 2.4.0
4
+ Summary: Python Client for CommitDB SQL Server
5
5
  Author: CommitDB Contributors
6
6
  License: Apache-2.0
7
7
  Project-URL: Homepage, https://github.com/nickyhof/CommitDB
@@ -23,14 +23,14 @@ Provides-Extra: ibis
23
23
  Requires-Dist: ibis-framework>=11.0; extra == "ibis"
24
24
  Requires-Dist: pandas>=2.0; extra == "ibis"
25
25
 
26
- # CommitDB Python Driver
26
+ # CommitDB Python Client
27
27
 
28
28
  [![PyPI version](https://badge.fury.io/py/commitdb.svg)](https://badge.fury.io/py/commitdb)
29
29
  [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
30
30
 
31
31
  Python client for CommitDB - a Git-backed SQL database engine.
32
32
 
33
- **[📚 Full Documentation](https://nickyhof.github.io/CommitDB/python-driver/)**
33
+ **[📚 Full Documentation](https://nickyhof.github.io/CommitDB/python-client/)**
34
34
 
35
35
  > ⚠️ **Experimental Project** - This is a hobby project and should not be used in any production environment.
36
36
 
@@ -1,11 +1,11 @@
1
- # CommitDB Python Driver
1
+ # CommitDB Python Client
2
2
 
3
3
  [![PyPI version](https://badge.fury.io/py/commitdb.svg)](https://badge.fury.io/py/commitdb)
4
4
  [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
5
5
 
6
6
  Python client for CommitDB - a Git-backed SQL database engine.
7
7
 
8
- **[📚 Full Documentation](https://nickyhof.github.io/CommitDB/python-driver/)**
8
+ **[📚 Full Documentation](https://nickyhof.github.io/CommitDB/python-client/)**
9
9
 
10
10
  > ⚠️ **Experimental Project** - This is a hobby project and should not be used in any production environment.
11
11
 
@@ -1,5 +1,5 @@
1
1
  """
2
- CommitDB Python Driver
2
+ CommitDB Python Client
3
3
 
4
4
  A Python client for connecting to CommitDB SQL Server.
5
5
 
@@ -27,7 +27,7 @@ def _find_library() -> Optional[str]:
27
27
  search_paths = [
28
28
  Path(__file__).parent / 'lib', # Package lib directory (for pip installed)
29
29
  Path(__file__).parent, # Same directory as this file
30
- Path(__file__).parent.parent / 'lib', # drivers/python/lib
30
+ Path(__file__).parent.parent / 'lib', # clients/python/lib
31
31
  Path(__file__).parent.parent.parent.parent / 'lib', # CommitDB/lib
32
32
  Path.cwd() / 'lib', # ./lib
33
33
  Path.cwd(), # Current directory
@@ -1,5 +1,5 @@
1
1
  """
2
- CommitDB Client - Python driver for CommitDB SQL Server.
2
+ CommitDB Client - Python Client for CommitDB SQL Server.
3
3
  """
4
4
 
5
5
  import json
@@ -158,7 +158,7 @@ class Backend(SQLBackend):
158
158
 
159
159
  @property
160
160
  def version(self) -> str:
161
- """Return CommitDB Python driver version."""
161
+ """Return CommitDB Python Client version."""
162
162
  return __version__
163
163
 
164
164
  @property
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: commitdb
3
- Version: 2.3.0
4
- Summary: Python driver for CommitDB SQL Server
3
+ Version: 2.4.0
4
+ Summary: Python Client for CommitDB SQL Server
5
5
  Author: CommitDB Contributors
6
6
  License: Apache-2.0
7
7
  Project-URL: Homepage, https://github.com/nickyhof/CommitDB
@@ -23,14 +23,14 @@ Provides-Extra: ibis
23
23
  Requires-Dist: ibis-framework>=11.0; extra == "ibis"
24
24
  Requires-Dist: pandas>=2.0; extra == "ibis"
25
25
 
26
- # CommitDB Python Driver
26
+ # CommitDB Python Client
27
27
 
28
28
  [![PyPI version](https://badge.fury.io/py/commitdb.svg)](https://badge.fury.io/py/commitdb)
29
29
  [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
30
30
 
31
31
  Python client for CommitDB - a Git-backed SQL database engine.
32
32
 
33
- **[📚 Full Documentation](https://nickyhof.github.io/CommitDB/python-driver/)**
33
+ **[📚 Full Documentation](https://nickyhof.github.io/CommitDB/python-client/)**
34
34
 
35
35
  > ⚠️ **Experimental Project** - This is a hobby project and should not be used in any production environment.
36
36
 
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "commitdb"
7
- version = "2.3.0"
8
- description = "Python driver for CommitDB SQL Server"
7
+ version = "2.4.0"
8
+ description = "Python Client for CommitDB SQL Server"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
11
11
  license = {text = "Apache-2.0"}
@@ -1,9 +1,9 @@
1
1
  """
2
- Tests for CommitDB Python driver.
2
+ Tests for CommitDB Python Client.
3
3
 
4
4
  To run with a live server:
5
5
  1. Start the server: go run ./cmd/server
6
- 2. Run tests: pytest drivers/python/tests/
6
+ 2. Run tests: pytest clients/python/tests/
7
7
  """
8
8
 
9
9
  import pytest
@@ -133,7 +133,7 @@ class TestCommitDBIntegration:
133
133
 
134
134
  # Auth integration tests require a server running with --jwt-secret
135
135
  # Run with: go run ./cmd/server --jwt-secret "test-secret" &
136
- # Set env: COMMITDB_JWT_SECRET=test-secret pytest drivers/python/tests/ -v -k auth
136
+ # Set env: COMMITDB_JWT_SECRET=test-secret pytest clients/python/tests/ -v -k auth
137
137
 
138
138
  SKIP_AUTH_INTEGRATION = os.environ.get('COMMITDB_JWT_SECRET') is None
139
139
 
@@ -220,14 +220,14 @@ class TestCommitDBAuthIntegration:
220
220
 
221
221
 
222
222
  # Embedded mode tests (require libcommitdb shared library)
223
- # Run with: make lib && pytest drivers/python/tests/ -v
223
+ # Run with: make lib && pytest clients/python/tests/ -v
224
224
 
225
225
  import os
226
226
  from pathlib import Path
227
227
 
228
228
  # Try to find the shared library
229
229
  def _find_lib():
230
- # Path: drivers/python/tests/test_client.py -> repo root is 4 levels up
230
+ # Path: clients/python/tests/test_client.py -> repo root is 4 levels up
231
231
  repo_root = Path(__file__).parent.parent.parent.parent
232
232
  lib_paths = [
233
233
  repo_root / 'lib' / 'libcommitdb.dylib',
File without changes
File without changes
File without changes