dagster-postgres 0.24.8__py3-none-any.whl → 0.24.9__py3-none-any.whl
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 dagster-postgres might be problematic. Click here for more details.
- dagster_postgres/schedule_storage/schedule_storage.py +3 -2
- dagster_postgres/version.py +1 -1
- {dagster_postgres-0.24.8.dist-info → dagster_postgres-0.24.9.dist-info}/METADATA +2 -2
- {dagster_postgres-0.24.8.dist-info → dagster_postgres-0.24.9.dist-info}/RECORD +7 -7
- {dagster_postgres-0.24.8.dist-info → dagster_postgres-0.24.9.dist-info}/LICENSE +0 -0
- {dagster_postgres-0.24.8.dist-info → dagster_postgres-0.24.9.dist-info}/WHEEL +0 -0
- {dagster_postgres-0.24.8.dist-info → dagster_postgres-0.24.9.dist-info}/top_level.txt +0 -0
|
@@ -5,6 +5,7 @@ import sqlalchemy as db
|
|
|
5
5
|
import sqlalchemy.dialects as db_dialects
|
|
6
6
|
import sqlalchemy.pool as db_pool
|
|
7
7
|
from dagster._config.config_schema import UserConfigSchema
|
|
8
|
+
from dagster._core.definitions.asset_key import EntityKey
|
|
8
9
|
from dagster._core.definitions.declarative_automation.serialized_objects import (
|
|
9
10
|
AutomationConditionEvaluationWithRunIds,
|
|
10
11
|
)
|
|
@@ -183,7 +184,7 @@ class PostgresScheduleStorage(SqlScheduleStorage, ConfigurableClass):
|
|
|
183
184
|
def add_auto_materialize_asset_evaluations(
|
|
184
185
|
self,
|
|
185
186
|
evaluation_id: int,
|
|
186
|
-
asset_evaluations: Sequence[AutomationConditionEvaluationWithRunIds],
|
|
187
|
+
asset_evaluations: Sequence[AutomationConditionEvaluationWithRunIds[EntityKey]],
|
|
187
188
|
):
|
|
188
189
|
if not asset_evaluations:
|
|
189
190
|
return
|
|
@@ -192,7 +193,7 @@ class PostgresScheduleStorage(SqlScheduleStorage, ConfigurableClass):
|
|
|
192
193
|
[
|
|
193
194
|
{
|
|
194
195
|
"evaluation_id": evaluation_id,
|
|
195
|
-
"asset_key": evaluation.
|
|
196
|
+
"asset_key": evaluation.key.to_db_string(),
|
|
196
197
|
"asset_evaluation_body": serialize_value(evaluation),
|
|
197
198
|
"num_requested": evaluation.num_requested,
|
|
198
199
|
}
|
dagster_postgres/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.24.
|
|
1
|
+
__version__ = "0.24.9"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dagster-postgres
|
|
3
|
-
Version: 0.24.
|
|
3
|
+
Version: 0.24.9
|
|
4
4
|
Summary: A Dagster integration for postgres
|
|
5
5
|
Home-page: https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-postgres
|
|
6
6
|
Author: Dagster Labs
|
|
@@ -15,6 +15,6 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
16
|
Requires-Python: >=3.8,<3.13
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: dagster ==1.8.
|
|
18
|
+
Requires-Dist: dagster ==1.8.9
|
|
19
19
|
Requires-Dist: psycopg2-binary
|
|
20
20
|
|
|
@@ -2,16 +2,16 @@ dagster_postgres/__init__.py,sha256=h8rM1BA27G8jSAak_WnjfZ_dqyz79x9rfTeroUveu_w,
|
|
|
2
2
|
dagster_postgres/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
3
3
|
dagster_postgres/storage.py,sha256=whjOJeT4-W41bZ8xDBg77NGSVJPQzc33IsxpmGNdpVM,4257
|
|
4
4
|
dagster_postgres/utils.py,sha256=DUycPHaK-eq8Gpnulpk7OWGk7TIhWTfS1UkqIyxaKGo,5903
|
|
5
|
-
dagster_postgres/version.py,sha256=
|
|
5
|
+
dagster_postgres/version.py,sha256=9weWImOclCBqHuCBLYEnR7Ab-QgQ2rysqid5TzPUNBk,23
|
|
6
6
|
dagster_postgres/alembic/alembic.ini,sha256=GovyDEhu_6HvkWV6txqjdDBOe4BseSM0YDWGxXM5_cA,986
|
|
7
7
|
dagster_postgres/event_log/__init__.py,sha256=wRcUR-StRNrPCqpEzi0MRY8b-r_TEWV17OsEynFqlLs,100
|
|
8
8
|
dagster_postgres/event_log/event_log.py,sha256=SBxt8DURkH4SZd7W2I4RN32f9CkNRV-yEfFjqFt6EMY,15478
|
|
9
9
|
dagster_postgres/run_storage/__init__.py,sha256=oW_546mJ5K-e-RF0Ou7r-4fHWxFthHgPPhWxklsVK1g,94
|
|
10
10
|
dagster_postgres/run_storage/run_storage.py,sha256=LQOuYnhjtyLnTDdVKa1zB-5XGuPV5Xk3FyL8g1tJvWc,9665
|
|
11
11
|
dagster_postgres/schedule_storage/__init__.py,sha256=-jW-1S4Xf5Ew-cz-DjKjU5sVs9EEly_2ELMLOXTewv0,123
|
|
12
|
-
dagster_postgres/schedule_storage/schedule_storage.py,sha256=
|
|
13
|
-
dagster_postgres-0.24.
|
|
14
|
-
dagster_postgres-0.24.
|
|
15
|
-
dagster_postgres-0.24.
|
|
16
|
-
dagster_postgres-0.24.
|
|
17
|
-
dagster_postgres-0.24.
|
|
12
|
+
dagster_postgres/schedule_storage/schedule_storage.py,sha256=Sh7PP_ITZaeOLg94nXLQfJtUCHh2n0LSKpCciP74a0o,8656
|
|
13
|
+
dagster_postgres-0.24.9.dist-info/LICENSE,sha256=TMatHW4_G9ldRdodEAp-l2Xa2WvsdeOh60E3v1R2jis,11349
|
|
14
|
+
dagster_postgres-0.24.9.dist-info/METADATA,sha256=nWK0EF8CdGaVpbfQa8kPauWe8bZvtbk4cUy8NI1MZEg,762
|
|
15
|
+
dagster_postgres-0.24.9.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
16
|
+
dagster_postgres-0.24.9.dist-info/top_level.txt,sha256=lScMtAEKDX1yIv2tGa1nzntBa0HEStfWPfCwD8FWlHk,17
|
|
17
|
+
dagster_postgres-0.24.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|