sqlspec 0.1.0__tar.gz → 0.1.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.

Files changed (27) hide show
  1. {sqlspec-0.1.0 → sqlspec-0.1.1}/.pre-commit-config.yaml +1 -1
  2. {sqlspec-0.1.0 → sqlspec-0.1.1}/PKG-INFO +3 -3
  3. {sqlspec-0.1.0 → sqlspec-0.1.1}/README.md +1 -1
  4. {sqlspec-0.1.0 → sqlspec-0.1.1}/pyproject.toml +2 -2
  5. {sqlspec-0.1.0 → sqlspec-0.1.1}/uv.lock +1 -1
  6. {sqlspec-0.1.0 → sqlspec-0.1.1}/.gitignore +0 -0
  7. {sqlspec-0.1.0 → sqlspec-0.1.1}/CONTRIBUTING.rst +0 -0
  8. {sqlspec-0.1.0 → sqlspec-0.1.1}/Makefile +0 -0
  9. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/__init__.py +0 -0
  10. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/__metadata__.py +0 -0
  11. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/_serialization.py +0 -0
  12. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/exceptions.py +0 -0
  13. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/filters.py +0 -0
  14. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/py.typed +0 -0
  15. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/types/__init__.py +0 -0
  16. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/types/empty.py +0 -0
  17. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/types/protocols.py +0 -0
  18. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/utils/__init__.py +0 -0
  19. {sqlspec-0.1.0 → sqlspec-0.1.1}/sqlspec/utils/dataclass.py +0 -0
  20. {sqlspec-0.1.0 → sqlspec-0.1.1}/tests/__init__.py +0 -0
  21. {sqlspec-0.1.0 → sqlspec-0.1.1}/tests/conftest.py +0 -0
  22. {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/__init__.py +0 -0
  23. {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/build_docs.py +0 -0
  24. {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/pypi_readme.py +0 -0
  25. {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/sphinx_ext/__init__.py +0 -0
  26. {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/sphinx_ext/changelog.py +0 -0
  27. {sqlspec-0.1.0 → sqlspec-0.1.1}/tools/sphinx_ext/missing_references.py +0 -0
@@ -17,7 +17,7 @@ repos:
17
17
  - id: mixed-line-ending
18
18
  - id: trailing-whitespace
19
19
  - repo: https://github.com/charliermarsh/ruff-pre-commit
20
- rev: "v0.7.0"
20
+ rev: "v0.7.1"
21
21
  hooks:
22
22
  - id: ruff
23
23
  args: ["--fix"]
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: sqlspec
3
- Version: 0.1.0
4
- Summary: SQL Expiriments in Python
3
+ Version: 0.1.1
4
+ Summary: SQL Experiments in Python
5
5
  Author-email: Cody Fincher <cody@litestar.dev>
6
6
  Maintainer-email: Litestar Developers <hello@litestar.dev>
7
7
  Requires-Python: <4.0,>=3.9
@@ -22,4 +22,4 @@ Description-Content-Type: text/markdown
22
22
 
23
23
  # SQLSpec
24
24
 
25
- SQL Expiriments in Python
25
+ SQL Experiments in Python
@@ -11,4 +11,4 @@
11
11
 
12
12
  # SQLSpec
13
13
 
14
- SQL Expiriments in Python
14
+ SQL Experiments in Python
@@ -2,14 +2,14 @@
2
2
  authors = [{ name = "Cody Fincher", email = "cody@litestar.dev" }]
3
3
  dependencies = [ "typing-extensions>=4.0.0",
4
4
  "eval_type_backport; python_version <= \"3.9\"",]
5
- description = "SQL Expiriments in Python"
5
+ description = "SQL Experiments in Python"
6
6
  maintainers = [
7
7
  { name = "Litestar Developers", email = "hello@litestar.dev" },
8
8
  ]
9
9
  name = "sqlspec"
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.9, <4.0"
12
- version = "0.1.0"
12
+ version = "0.1.1"
13
13
 
14
14
  [build-system]
15
15
  build-backend = "hatchling.build"
@@ -1504,7 +1504,7 @@ wheels = [
1504
1504
 
1505
1505
  [[package]]
1506
1506
  name = "sqlspec"
1507
- version = "0.1.0"
1507
+ version = "0.1.1"
1508
1508
  source = { editable = "." }
1509
1509
  dependencies = [
1510
1510
  { name = "eval-type-backport", marker = "python_full_version < '3.10'" },
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