dsw-command-queue 4.30.2__tar.gz → 4.32.0__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.
- {dsw_command_queue-4.30.2 → dsw_command_queue-4.32.0}/PKG-INFO +3 -2
- {dsw_command_queue-4.30.2 → dsw_command_queue-4.32.0}/dsw/command_queue/build_info.py +4 -4
- {dsw_command_queue-4.30.2 → dsw_command_queue-4.32.0}/dsw/command_queue/command_queue.py +7 -1
- {dsw_command_queue-4.30.2 → dsw_command_queue-4.32.0}/dsw/command_queue/query.py +2 -0
- {dsw_command_queue-4.30.2 → dsw_command_queue-4.32.0}/pyproject.toml +4 -3
- {dsw_command_queue-4.30.2 → dsw_command_queue-4.32.0}/README.md +0 -0
- {dsw_command_queue-4.30.2 → dsw_command_queue-4.32.0}/dsw/command_queue/__init__.py +0 -0
- {dsw_command_queue-4.30.2 → dsw_command_queue-4.32.0}/dsw/command_queue/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dsw-command-queue
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.32.0
|
|
4
4
|
Summary: Library for working with command queue and persistent commands
|
|
5
5
|
Keywords: dsw,subscriber,publisher,database,queue,processing
|
|
6
6
|
Author: Marek Suchánek
|
|
@@ -11,12 +11,13 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
11
11
|
Classifier: Programming Language :: Python
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
15
|
Classifier: Topic :: Database
|
|
15
16
|
Classifier: Topic :: Text Processing
|
|
16
17
|
Classifier: Topic :: Utilities
|
|
17
18
|
Requires-Dist: func-timeout
|
|
18
19
|
Requires-Dist: tenacity
|
|
19
|
-
Requires-Dist: dsw-database==4.
|
|
20
|
+
Requires-Dist: dsw-database==4.32.0
|
|
20
21
|
Requires-Python: >=3.12, <4
|
|
21
22
|
Project-URL: Homepage, https://ds-wizard.org
|
|
22
23
|
Project-URL: Repository, https://github.com/ds-wizard/engine-tools
|
|
@@ -9,9 +9,9 @@ BuildInfo = namedtuple(
|
|
|
9
9
|
)
|
|
10
10
|
|
|
11
11
|
BUILD_INFO = BuildInfo(
|
|
12
|
-
version='v4.
|
|
13
|
-
built_at='2026-
|
|
14
|
-
sha='
|
|
12
|
+
version='v4.32.0~7ad5ac9',
|
|
13
|
+
built_at='2026-07-07 05:32:52Z',
|
|
14
|
+
sha='7ad5ac9f39265ed2db9c8dba2c0e9a94de79227d',
|
|
15
15
|
branch='HEAD',
|
|
16
|
-
tag='v4.
|
|
16
|
+
tag='v4.32.0',
|
|
17
17
|
)
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
1
3
|
import abc
|
|
2
4
|
import datetime
|
|
3
5
|
import logging
|
|
@@ -5,17 +7,21 @@ import os
|
|
|
5
7
|
import platform
|
|
6
8
|
import select
|
|
7
9
|
import signal
|
|
10
|
+
import typing
|
|
8
11
|
|
|
9
12
|
import func_timeout
|
|
10
13
|
import psycopg.generators
|
|
11
14
|
import tenacity
|
|
12
15
|
|
|
13
|
-
from dsw.database import Database
|
|
14
16
|
from dsw.database.model import PersistentCommand
|
|
15
17
|
|
|
16
18
|
from .query import CommandQueries
|
|
17
19
|
|
|
18
20
|
|
|
21
|
+
if typing.TYPE_CHECKING:
|
|
22
|
+
from dsw.database import Database
|
|
23
|
+
|
|
24
|
+
|
|
19
25
|
LOG = logging.getLogger(__name__)
|
|
20
26
|
|
|
21
27
|
RETRY_QUERY_MULTIPLIER = 0.5
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "dsw-command-queue"
|
|
3
|
-
version = "4.
|
|
3
|
+
version = "4.32.0"
|
|
4
4
|
description = "Library for working with command queue and persistent commands"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
keywords = ["dsw", "subscriber", "publisher", "database", "queue", "processing"]
|
|
@@ -14,6 +14,7 @@ classifiers = [
|
|
|
14
14
|
"Programming Language :: Python",
|
|
15
15
|
"Programming Language :: Python :: 3.12",
|
|
16
16
|
"Programming Language :: Python :: 3.13",
|
|
17
|
+
"Programming Language :: Python :: 3.14",
|
|
17
18
|
"Topic :: Database",
|
|
18
19
|
"Topic :: Text Processing",
|
|
19
20
|
"Topic :: Utilities",
|
|
@@ -23,7 +24,7 @@ dependencies = [
|
|
|
23
24
|
"func-timeout",
|
|
24
25
|
"tenacity",
|
|
25
26
|
# DSW
|
|
26
|
-
"dsw-database==4.
|
|
27
|
+
"dsw-database==4.32.0",
|
|
27
28
|
]
|
|
28
29
|
|
|
29
30
|
[project.urls]
|
|
@@ -33,7 +34,7 @@ Documentation = "https://guide.ds-wizard.org"
|
|
|
33
34
|
Issues = "https://github.com/ds-wizard/ds-wizard/issues"
|
|
34
35
|
|
|
35
36
|
[build-system]
|
|
36
|
-
requires = ["uv_build>=0.
|
|
37
|
+
requires = ["uv_build>=0.11.0,<0.12.0"]
|
|
37
38
|
build-backend = "uv_build"
|
|
38
39
|
|
|
39
40
|
[tool.uv.build-backend]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|