macrostrat.database 3.5.3__tar.gz → 3.5.4__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.
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/PKG-INFO +1 -1
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/utils.py +8 -1
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/pyproject.toml +1 -1
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/__init__.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/mapper/__init__.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/mapper/base.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/mapper/cache.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/mapper/utils.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/postgresql.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/transfer/__init__.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/transfer/dump_database.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/transfer/move_tables.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/transfer/restore_database.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/transfer/stream_utils.py +0 -0
- {macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/transfer/utils.py +0 -0
|
@@ -463,7 +463,14 @@ def run_fixtures(connectable, fixtures: Union[Path, list[Path]], params=None, **
|
|
|
463
463
|
for fixture in files:
|
|
464
464
|
fn = fixture.relative_to(prefix)
|
|
465
465
|
console.print(f"[cyan bold]{fn}[/]")
|
|
466
|
-
run_sql_file(
|
|
466
|
+
run_sql_file(
|
|
467
|
+
connectable,
|
|
468
|
+
fixture,
|
|
469
|
+
params,
|
|
470
|
+
output_mode=output_mode,
|
|
471
|
+
output_file=output_file,
|
|
472
|
+
**kwargs,
|
|
473
|
+
)
|
|
467
474
|
console.print()
|
|
468
475
|
|
|
469
476
|
|
|
@@ -3,7 +3,7 @@ authors = ["Daven Quinn <dev@davenquinn.com>"]
|
|
|
3
3
|
description = "A SQLAlchemy-based database toolkit."
|
|
4
4
|
name = "macrostrat.database"
|
|
5
5
|
packages = [{ include = "macrostrat" }]
|
|
6
|
-
version = "3.5.
|
|
6
|
+
version = "3.5.4"
|
|
7
7
|
|
|
8
8
|
[tool.poetry.dependencies]
|
|
9
9
|
GeoAlchemy2 = "^0.15.2"
|
|
File without changes
|
{macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/mapper/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/transfer/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/transfer/move_tables.py
RENAMED
|
File without changes
|
|
File without changes
|
{macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/transfer/stream_utils.py
RENAMED
|
File without changes
|
{macrostrat_database-3.5.3 → macrostrat_database-3.5.4}/macrostrat/database/transfer/utils.py
RENAMED
|
File without changes
|