sqla-fancy-core 1.1.0__tar.gz → 1.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 sqla-fancy-core might be problematic. Click here for more details.

Files changed (19) hide show
  1. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/PKG-INFO +1 -1
  2. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/pyproject.toml +1 -1
  3. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/sqla_fancy_core/decorators.py +1 -1
  4. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/uv.lock +1 -1
  5. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/.github/workflows/ci.yaml +0 -0
  6. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/.gitignore +0 -0
  7. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/LICENSE +0 -0
  8. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/README.md +0 -0
  9. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/sqla_fancy_core/__init__.py +0 -0
  10. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/sqla_fancy_core/factories.py +0 -0
  11. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/sqla_fancy_core/wrappers.py +0 -0
  12. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/tests/__init__.py +0 -0
  13. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/tests/test_async_fancy_engine.py +0 -0
  14. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/tests/test_connect.py +0 -0
  15. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/tests/test_fancy_engine.py +0 -0
  16. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/tests/test_field.py +0 -0
  17. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/tests/test_table_factory.py +0 -0
  18. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/tests/test_table_factory_async.py +0 -0
  19. {sqla_fancy_core-1.1.0 → sqla_fancy_core-1.1.1}/tests/test_transact.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sqla-fancy-core
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: SQLAlchemy core, but fancier
5
5
  Project-URL: Homepage, https://github.com/sayanarijit/sqla-fancy-core
6
6
  Author-email: Arijit Basu <sayanarijit@gmail.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = 'sqla-fancy-core'
3
- version = '1.1.0'
3
+ version = '1.1.1'
4
4
  description = 'SQLAlchemy core, but fancier'
5
5
  readme = 'README.md'
6
6
  requires-python = ">=3.7"
@@ -7,7 +7,7 @@ from typing import Union, overload
7
7
  import sqlalchemy as sa
8
8
  from sqlalchemy.ext.asyncio import AsyncConnection, AsyncEngine
9
9
 
10
- EngineType = Union[sa.engine.Engine, AsyncEngine]
10
+ EngineType = Union[sa.Engine, AsyncEngine]
11
11
 
12
12
 
13
13
  class _Injectable:
@@ -2968,7 +2968,7 @@ wheels = [
2968
2968
 
2969
2969
  [[package]]
2970
2970
  name = "sqla-fancy-core"
2971
- version = "1.1.0"
2971
+ version = "1.1.1"
2972
2972
  source = { editable = "." }
2973
2973
  dependencies = [
2974
2974
  { name = "sqlalchemy" },
File without changes