pjdev-sqlmodel 0.0.1a1__tar.gz → 0.0.1a3__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,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pjdev-sqlmodel
3
- Version: 0.0.1a1
3
+ Version: 0.0.1a3
4
4
  Project-URL: Documentation, https://gitlab.purplejay.net/keystone/python/-/tree/main/pjdev-sqlmodel#readme
5
5
  Project-URL: Issues, https://gitlab.purplejay.net/keystone/python/issues
6
6
  Project-URL: Source, https://gitlab.purplejay.net/keystone/python
@@ -1,4 +1,4 @@
1
1
  # SPDX-FileCopyrightText: 2024-present Chris O'Neill <chris@purplejay.io>
2
2
  #
3
3
  # SPDX-License-Identifier: MIT
4
- __version__ = "0.0.1a1"
4
+ __version__ = "0.0.1a3"
@@ -8,7 +8,7 @@ from typing import (
8
8
  from sqlalchemy import Engine, NullPool
9
9
  from sqlmodel import SQLModel, create_engine, Session as SQLModelSession
10
10
 
11
- from pjdev_sqlmodel.pjdev_db_settings import SqlModelSettings
11
+ from pjdev_sqlmodel.settings import SqlModelSettings
12
12
 
13
13
 
14
14
  class DBContext:
@@ -9,7 +9,7 @@ import pandas as pd
9
9
  from openpyxl.reader.excel import load_workbook
10
10
  from loguru import logger
11
11
 
12
- from pjdev_sqlmodel.pjdev_db_service import session_context
12
+ from pjdev_sqlmodel.service import session_context
13
13
 
14
14
  T = TypeVar("T", bound=SQLModel)
15
15