sqlspec 0.7.0__tar.gz → 0.7.1__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.
Potentially problematic release.
This version of sqlspec might be problematic. Click here for more details.
- {sqlspec-0.7.0 → sqlspec-0.7.1}/PKG-INFO +1 -1
- {sqlspec-0.7.0 → sqlspec-0.7.1}/pyproject.toml +4 -4
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/duckdb/config.py +2 -2
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/extensions/litestar/plugin.py +3 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/utils/deprecation.py +1 -1
- {sqlspec-0.7.0 → sqlspec-0.7.1}/uv.lock +28 -28
- sqlspec-0.7.0/base.py +0 -9
- {sqlspec-0.7.0 → sqlspec-0.7.1}/.gitignore +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/.pre-commit-config.yaml +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/CONTRIBUTING.rst +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/LICENSE +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/Makefile +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/NOTICE +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/README.md +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/__metadata__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/_serialization.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/_typing.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/adbc/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/adbc/config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/aiosqlite/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/aiosqlite/config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/asyncmy/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/asyncmy/config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/asyncpg/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/asyncpg/config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/duckdb/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/oracledb/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/oracledb/config/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/oracledb/config/_asyncio.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/oracledb/config/_common.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/oracledb/config/_sync.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/psycopg/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/psycopg/config/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/psycopg/config/_async.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/psycopg/config/_common.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/psycopg/config/_sync.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/sqlite/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/adapters/sqlite/config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/base.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/exceptions.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/extensions/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/extensions/litestar/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/extensions/litestar/config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/filters.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/py.typed +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/typing.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/utils/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/utils/fixtures.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/utils/module_loader.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/sqlspec/utils/text.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/conftest.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/integration/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_aiosqlite/test_config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_asyncpg/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_asyncpg/test_config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_duckdb/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_duckdb/test_config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_oracledb/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_oracledb/test_config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_psycopg/test_async_config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_psycopg/test_sync_config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_sqlite/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_adapters/test_sqlite/test_config.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_base.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_typing.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_utils/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_utils/test_module_loader.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tests/unit/test_utils/test_text.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tools/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tools/build_docs.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tools/pypi_readme.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tools/sphinx_ext/__init__.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tools/sphinx_ext/changelog.py +0 -0
- {sqlspec-0.7.0 → sqlspec-0.7.1}/tools/sphinx_ext/missing_references.py +0 -0
|
@@ -7,7 +7,7 @@ maintainers = [{ name = "Litestar Developers", email = "hello@litestar.dev" }]
|
|
|
7
7
|
name = "sqlspec"
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
requires-python = ">=3.9, <4.0"
|
|
10
|
-
version = "0.7.
|
|
10
|
+
version = "0.7.1"
|
|
11
11
|
|
|
12
12
|
[project.optional-dependencies]
|
|
13
13
|
adbc = ["adbc-driver-manager", "pyarrow"]
|
|
@@ -101,7 +101,7 @@ packages = ["sqlspec"]
|
|
|
101
101
|
allow_dirty = true
|
|
102
102
|
commit = false
|
|
103
103
|
commit_args = "--no-verify"
|
|
104
|
-
current_version = "0.
|
|
104
|
+
current_version = "0.7.1"
|
|
105
105
|
ignore_missing_files = false
|
|
106
106
|
ignore_missing_version = false
|
|
107
107
|
message = "chore(release): bump to v{new_version}"
|
|
@@ -123,11 +123,11 @@ search = 'version = "{current_version}"'
|
|
|
123
123
|
[[tool.bumpversion.files]]
|
|
124
124
|
filename = "uv.lock"
|
|
125
125
|
replace = """
|
|
126
|
-
name = "
|
|
126
|
+
name = "sqlspec"
|
|
127
127
|
version = "{new_version}"
|
|
128
128
|
"""
|
|
129
129
|
search = """
|
|
130
|
-
name = "
|
|
130
|
+
name = "sqlspec"
|
|
131
131
|
version = "{current_version}"
|
|
132
132
|
"""
|
|
133
133
|
|
|
@@ -103,8 +103,8 @@ class DuckDBConfig(NoPoolSyncConfig[DuckDBPyConnection]):
|
|
|
103
103
|
Args:
|
|
104
104
|
connection: The DuckDB connection to configure.
|
|
105
105
|
"""
|
|
106
|
-
for
|
|
107
|
-
connection.execute(
|
|
106
|
+
for key, value in cast("dict[str,Any]", self.config).items():
|
|
107
|
+
connection.execute(f"SET {key}='{value}'")
|
|
108
108
|
|
|
109
109
|
def _configure_extensions(self, connection: "DuckDBPyConnection") -> None:
|
|
110
110
|
"""Configure extensions for the connection.
|
|
@@ -35,6 +35,9 @@ class SQLSpecPlugin(InitPluginProtocol):
|
|
|
35
35
|
|
|
36
36
|
Args:
|
|
37
37
|
app_config: The :class:`AppConfig <.config.app.AppConfig>` instance.
|
|
38
|
+
|
|
39
|
+
Returns:
|
|
40
|
+
The updated :class:`AppConfig <.config.app.AppConfig>` instance.
|
|
38
41
|
"""
|
|
39
42
|
|
|
40
43
|
from sqlspec.base import ConfigManager
|
|
@@ -50,7 +50,7 @@ def warn_deprecation(
|
|
|
50
50
|
|
|
51
51
|
parts.extend( # pyright: ignore[reportUnknownMemberType]
|
|
52
52
|
(
|
|
53
|
-
f"Deprecated in
|
|
53
|
+
f"Deprecated in SQLSpec {version}",
|
|
54
54
|
f"This {kind} will be removed in {removal_in or 'the next major version'}",
|
|
55
55
|
),
|
|
56
56
|
)
|
|
@@ -1023,7 +1023,7 @@ wheels = [
|
|
|
1023
1023
|
|
|
1024
1024
|
[[package]]
|
|
1025
1025
|
name = "google-api-core"
|
|
1026
|
-
version = "2.24.
|
|
1026
|
+
version = "2.24.2"
|
|
1027
1027
|
source = { registry = "https://pypi.org/simple" }
|
|
1028
1028
|
dependencies = [
|
|
1029
1029
|
{ name = "google-auth" },
|
|
@@ -1032,9 +1032,9 @@ dependencies = [
|
|
|
1032
1032
|
{ name = "protobuf" },
|
|
1033
1033
|
{ name = "requests" },
|
|
1034
1034
|
]
|
|
1035
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1035
|
+
sdist = { url = "https://files.pythonhosted.org/packages/09/5c/085bcb872556934bb119e5e09de54daa07873f6866b8f0303c49e72287f7/google_api_core-2.24.2.tar.gz", hash = "sha256:81718493daf06d96d6bc76a91c23874dbf2fac0adbbf542831b805ee6e974696", size = 163516 }
|
|
1036
1036
|
wheels = [
|
|
1037
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1037
|
+
{ url = "https://files.pythonhosted.org/packages/46/95/f472d85adab6e538da2025dfca9e976a0d125cc0af2301f190e77b76e51c/google_api_core-2.24.2-py3-none-any.whl", hash = "sha256:810a63ac95f3c441b7c0e43d344e372887f62ce9071ba972eacf32672e072de9", size = 160061 },
|
|
1038
1038
|
]
|
|
1039
1039
|
|
|
1040
1040
|
[package.optional-dependencies]
|
|
@@ -2032,14 +2032,14 @@ wheels = [
|
|
|
2032
2032
|
|
|
2033
2033
|
[[package]]
|
|
2034
2034
|
name = "proto-plus"
|
|
2035
|
-
version = "1.26.
|
|
2035
|
+
version = "1.26.1"
|
|
2036
2036
|
source = { registry = "https://pypi.org/simple" }
|
|
2037
2037
|
dependencies = [
|
|
2038
2038
|
{ name = "protobuf" },
|
|
2039
2039
|
]
|
|
2040
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2040
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f4/ac/87285f15f7cce6d4a008f33f1757fb5a13611ea8914eb58c3d0d26243468/proto_plus-1.26.1.tar.gz", hash = "sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012", size = 56142 }
|
|
2041
2041
|
wheels = [
|
|
2042
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2042
|
+
{ url = "https://files.pythonhosted.org/packages/4e/6d/280c4c2ce28b1593a19ad5239c8b826871fc6ec275c21afc8e1820108039/proto_plus-1.26.1-py3-none-any.whl", hash = "sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66", size = 50163 },
|
|
2043
2043
|
]
|
|
2044
2044
|
|
|
2045
2045
|
[[package]]
|
|
@@ -2621,23 +2621,23 @@ wheels = [
|
|
|
2621
2621
|
|
|
2622
2622
|
[[package]]
|
|
2623
2623
|
name = "pywin32"
|
|
2624
|
-
version = "
|
|
2624
|
+
version = "309"
|
|
2625
2625
|
source = { registry = "https://pypi.org/simple" }
|
|
2626
2626
|
wheels = [
|
|
2627
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2628
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2629
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2630
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2631
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2632
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2633
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2634
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2635
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2636
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2637
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2638
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2639
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2640
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2627
|
+
{ url = "https://files.pythonhosted.org/packages/8c/fa/aeba8c29ef8cb83402a6f2e6c436d7cc705d79d22db7923704bb6f6af825/pywin32-309-cp310-cp310-win32.whl", hash = "sha256:5b78d98550ca093a6fe7ab6d71733fbc886e2af9d4876d935e7f6e1cd6577ac9", size = 8843231 },
|
|
2628
|
+
{ url = "https://files.pythonhosted.org/packages/63/53/a568b1501e52363edf02db1ae3d3880d5307c7451dd31fb4f380b968b3c1/pywin32-309-cp310-cp310-win_amd64.whl", hash = "sha256:728d08046f3d65b90d4c77f71b6fbb551699e2005cc31bbffd1febd6a08aa698", size = 9595021 },
|
|
2629
|
+
{ url = "https://files.pythonhosted.org/packages/1e/ca/effaf45448a988f9a3ef5bb78519632761b9d941a3421c99d8a0a35ed8a2/pywin32-309-cp310-cp310-win_arm64.whl", hash = "sha256:c667bcc0a1e6acaca8984eb3e2b6e42696fc035015f99ff8bc6c3db4c09a466a", size = 8517212 },
|
|
2630
|
+
{ url = "https://files.pythonhosted.org/packages/05/54/6409b1d98f2b8fed3bc2cc854859e48ae4a2dd956176664e38ee49c50a4c/pywin32-309-cp311-cp311-win32.whl", hash = "sha256:d5df6faa32b868baf9ade7c9b25337fa5eced28eb1ab89082c8dae9c48e4cd51", size = 8779225 },
|
|
2631
|
+
{ url = "https://files.pythonhosted.org/packages/6a/f0/ae8ddb56771093dd2905baa852958fd65d42a8972aeefcf13578dfae69f4/pywin32-309-cp311-cp311-win_amd64.whl", hash = "sha256:e7ec2cef6df0926f8a89fd64959eba591a1eeaf0258082065f7bdbe2121228db", size = 9514129 },
|
|
2632
|
+
{ url = "https://files.pythonhosted.org/packages/7a/4b/1f5e377a04448cf410e13040bc0e4c408bfa0a65705cabf96904178f18df/pywin32-309-cp311-cp311-win_arm64.whl", hash = "sha256:54ee296f6d11db1627216e9b4d4c3231856ed2d9f194c82f26c6cb5650163f4c", size = 8450450 },
|
|
2633
|
+
{ url = "https://files.pythonhosted.org/packages/20/2c/b0240b14ff3dba7a8a7122dc9bbf7fbd21ed0e8b57c109633675b5d1761f/pywin32-309-cp312-cp312-win32.whl", hash = "sha256:de9acacced5fa82f557298b1fed5fef7bd49beee04190f68e1e4783fbdc19926", size = 8790648 },
|
|
2634
|
+
{ url = "https://files.pythonhosted.org/packages/dd/11/c36884c732e2b3397deee808b5dac1abbb170ec37f94c6606fcb04d1e9d7/pywin32-309-cp312-cp312-win_amd64.whl", hash = "sha256:6ff9eebb77ffc3d59812c68db33c0a7817e1337e3537859499bd27586330fc9e", size = 9497399 },
|
|
2635
|
+
{ url = "https://files.pythonhosted.org/packages/18/9f/79703972958f8ba3fd38bc9bf1165810bd75124982419b0cc433a2894d46/pywin32-309-cp312-cp312-win_arm64.whl", hash = "sha256:619f3e0a327b5418d833f44dc87859523635cf339f86071cc65a13c07be3110f", size = 8454122 },
|
|
2636
|
+
{ url = "https://files.pythonhosted.org/packages/6c/c3/51aca6887cc5e410aa4cdc55662cf8438212440c67335c3f141b02eb8d52/pywin32-309-cp313-cp313-win32.whl", hash = "sha256:008bffd4afd6de8ca46c6486085414cc898263a21a63c7f860d54c9d02b45c8d", size = 8789700 },
|
|
2637
|
+
{ url = "https://files.pythonhosted.org/packages/dd/66/330f265140fa814b4ed1bf16aea701f9d005f8f4ab57a54feb17f53afe7e/pywin32-309-cp313-cp313-win_amd64.whl", hash = "sha256:bd0724f58492db4cbfbeb1fcd606495205aa119370c0ddc4f70e5771a3ab768d", size = 9496714 },
|
|
2638
|
+
{ url = "https://files.pythonhosted.org/packages/2c/84/9a51e6949a03f25cd329ece54dbf0846d57fadd2e79046c3b8d140aaa132/pywin32-309-cp313-cp313-win_arm64.whl", hash = "sha256:8fd9669cfd41863b688a1bc9b1d4d2d76fd4ba2128be50a70b0ea66b8d37953b", size = 8453052 },
|
|
2639
|
+
{ url = "https://files.pythonhosted.org/packages/80/a2/9c0c9bda69e5064b616d4484624e097c13b2a2dfffe601609a1cb8e68ba1/pywin32-309-cp39-cp39-win32.whl", hash = "sha256:72ae9ae3a7a6473223589a1621f9001fe802d59ed227fd6a8503c9af67c1d5f4", size = 8842771 },
|
|
2640
|
+
{ url = "https://files.pythonhosted.org/packages/89/a5/390fbc106b5998296515d5a88730c6de472a6ed5f051db66d4cc46dd50fd/pywin32-309-cp39-cp39-win_amd64.whl", hash = "sha256:88bc06d6a9feac70783de64089324568ecbc65866e2ab318eab35da3811fd7ef", size = 9594766 },
|
|
2641
2641
|
]
|
|
2642
2642
|
|
|
2643
2643
|
[[package]]
|
|
@@ -2736,16 +2736,16 @@ wheels = [
|
|
|
2736
2736
|
|
|
2737
2737
|
[[package]]
|
|
2738
2738
|
name = "rich-click"
|
|
2739
|
-
version = "1.8.
|
|
2739
|
+
version = "1.8.8"
|
|
2740
2740
|
source = { registry = "https://pypi.org/simple" }
|
|
2741
2741
|
dependencies = [
|
|
2742
2742
|
{ name = "click" },
|
|
2743
2743
|
{ name = "rich" },
|
|
2744
2744
|
{ name = "typing-extensions" },
|
|
2745
2745
|
]
|
|
2746
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2746
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a6/7a/4b78c5997f2a799a8c5c07f3b2145bbcda40115c4d35c76fbadd418a3c89/rich_click-1.8.8.tar.gz", hash = "sha256:547c618dea916620af05d4a6456da797fbde904c97901f44d2f32f89d85d6c84", size = 39066 }
|
|
2747
2747
|
wheels = [
|
|
2748
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2748
|
+
{ url = "https://files.pythonhosted.org/packages/fa/69/963f0bf44a654f6465bdb66fb5a91051b0d7af9f742b5bd7202607165036/rich_click-1.8.8-py3-none-any.whl", hash = "sha256:205aabd5a98e64ab2c105dee9e368be27480ba004c7dfa2accd0ed44f9f1550e", size = 35747 },
|
|
2749
2749
|
]
|
|
2750
2750
|
|
|
2751
2751
|
[[package]]
|
|
@@ -2861,11 +2861,11 @@ wheels = [
|
|
|
2861
2861
|
|
|
2862
2862
|
[[package]]
|
|
2863
2863
|
name = "setuptools"
|
|
2864
|
-
version = "
|
|
2864
|
+
version = "76.0.0"
|
|
2865
2865
|
source = { registry = "https://pypi.org/simple" }
|
|
2866
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2866
|
+
sdist = { url = "https://files.pythonhosted.org/packages/32/d2/7b171caf085ba0d40d8391f54e1c75a1cda9255f542becf84575cfd8a732/setuptools-76.0.0.tar.gz", hash = "sha256:43b4ee60e10b0d0ee98ad11918e114c70701bc6051662a9a675a0496c1a158f4", size = 1349387 }
|
|
2867
2867
|
wheels = [
|
|
2868
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2868
|
+
{ url = "https://files.pythonhosted.org/packages/37/66/d2d7e6ad554f3a7c7297c3f8ef6e22643ad3d35ef5c63bf488bc89f32f31/setuptools-76.0.0-py3-none-any.whl", hash = "sha256:199466a166ff664970d0ee145839f5582cb9bca7a0a3a2e795b6a9cb2308e9c6", size = 1236106 },
|
|
2869
2869
|
]
|
|
2870
2870
|
|
|
2871
2871
|
[[package]]
|
|
@@ -3419,7 +3419,7 @@ wheels = [
|
|
|
3419
3419
|
|
|
3420
3420
|
[[package]]
|
|
3421
3421
|
name = "sqlspec"
|
|
3422
|
-
version = "0.7.
|
|
3422
|
+
version = "0.7.1"
|
|
3423
3423
|
source = { editable = "." }
|
|
3424
3424
|
dependencies = [
|
|
3425
3425
|
{ name = "eval-type-backport", marker = "python_full_version < '3.10'" },
|
sqlspec-0.7.0/base.py
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
from sqlspec.adapters.duckdb.config import DuckDBConfig
|
|
2
|
-
from sqlspec.base import ConfigManager
|
|
3
|
-
|
|
4
|
-
dbs = ConfigManager()
|
|
5
|
-
|
|
6
|
-
config = DuckDBConfig(database="test.duckdb", extensions=[{"name": "vss"}])
|
|
7
|
-
etl_db = dbs.add_config(config)
|
|
8
|
-
|
|
9
|
-
connection = dbs.get_connection(etl_db)
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|