dagster-postgres 0.27.12__tar.gz → 0.28.12__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.
- {dagster_postgres-0.27.12/dagster_postgres.egg-info → dagster_postgres-0.28.12}/PKG-INFO +4 -4
- dagster_postgres-0.28.12/README.md +4 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/utils.py +2 -2
- dagster_postgres-0.28.12/dagster_postgres/version.py +1 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12/dagster_postgres.egg-info}/PKG-INFO +4 -4
- dagster_postgres-0.28.12/dagster_postgres.egg-info/requires.txt +2 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/setup.py +3 -3
- dagster_postgres-0.27.12/README.md +0 -4
- dagster_postgres-0.27.12/dagster_postgres/version.py +0 -1
- dagster_postgres-0.27.12/dagster_postgres.egg-info/requires.txt +0 -2
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/LICENSE +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/MANIFEST.in +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/__init__.py +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/alembic/alembic.ini +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/event_log/__init__.py +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/event_log/event_log.py +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/py.typed +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/run_storage/__init__.py +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/run_storage/run_storage.py +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/schedule_storage/__init__.py +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/schedule_storage/schedule_storage.py +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/storage.py +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/test_fixtures/__init__.py +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/test_fixtures/docker-compose.yml +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres.egg-info/SOURCES.txt +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres.egg-info/dependency_links.txt +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres.egg-info/not-zip-safe +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres.egg-info/top_level.txt +0 -0
- {dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/setup.cfg +0 -0
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dagster-postgres
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.28.12
|
|
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
|
|
7
7
|
Author-email: hello@dagsterlabs.com
|
|
8
8
|
License: Apache-2.0
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
10
9
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
14
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
|
-
Requires-Python: >=3.
|
|
16
|
+
Requires-Python: >=3.10,<3.15
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: dagster==1.
|
|
18
|
+
Requires-Dist: dagster==1.12.12
|
|
19
19
|
Requires-Dist: psycopg2-binary
|
|
20
20
|
Dynamic: author
|
|
21
21
|
Dynamic: author-email
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import logging
|
|
2
2
|
import time
|
|
3
|
-
from collections.abc import Iterator, Mapping
|
|
3
|
+
from collections.abc import Callable, Iterator, Mapping
|
|
4
4
|
from contextlib import contextmanager
|
|
5
|
-
from typing import Any,
|
|
5
|
+
from typing import Any, Optional, TypeVar
|
|
6
6
|
from urllib.parse import quote, urlencode
|
|
7
7
|
|
|
8
8
|
import alembic.config
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.28.12"
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dagster-postgres
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.28.12
|
|
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
|
|
7
7
|
Author-email: hello@dagsterlabs.com
|
|
8
8
|
License: Apache-2.0
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
10
9
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
14
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
|
-
Requires-Python: >=3.
|
|
16
|
+
Requires-Python: >=3.10,<3.15
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: dagster==1.
|
|
18
|
+
Requires-Dist: dagster==1.12.12
|
|
19
19
|
Requires-Dist: psycopg2-binary
|
|
20
20
|
Dynamic: author
|
|
21
21
|
Dynamic: author-email
|
|
@@ -23,11 +23,11 @@ setup(
|
|
|
23
23
|
description="A Dagster integration for postgres",
|
|
24
24
|
url="https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-postgres",
|
|
25
25
|
classifiers=[
|
|
26
|
-
"Programming Language :: Python :: 3.9",
|
|
27
26
|
"Programming Language :: Python :: 3.10",
|
|
28
27
|
"Programming Language :: Python :: 3.11",
|
|
29
28
|
"Programming Language :: Python :: 3.12",
|
|
30
29
|
"Programming Language :: Python :: 3.13",
|
|
30
|
+
"Programming Language :: Python :: 3.14",
|
|
31
31
|
"License :: OSI Approved :: Apache Software License",
|
|
32
32
|
"Operating System :: OS Independent",
|
|
33
33
|
],
|
|
@@ -38,7 +38,7 @@ setup(
|
|
|
38
38
|
]
|
|
39
39
|
},
|
|
40
40
|
include_package_data=True,
|
|
41
|
-
python_requires=">=3.
|
|
42
|
-
install_requires=["dagster==1.
|
|
41
|
+
python_requires=">=3.10,<3.15",
|
|
42
|
+
install_requires=["dagster==1.12.12", "psycopg2-binary"],
|
|
43
43
|
zip_safe=False,
|
|
44
44
|
)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.27.12"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/event_log/__init__.py
RENAMED
|
File without changes
|
{dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/event_log/event_log.py
RENAMED
|
File without changes
|
|
File without changes
|
{dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/run_storage/__init__.py
RENAMED
|
File without changes
|
{dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/run_storage/run_storage.py
RENAMED
|
File without changes
|
{dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/schedule_storage/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres/test_fixtures/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres.egg-info/not-zip-safe
RENAMED
|
File without changes
|
{dagster_postgres-0.27.12 → dagster_postgres-0.28.12}/dagster_postgres.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|