ringo-task-queue 0.1.0.dev0__py3-none-win_amd64.whl → 0.1.0.dev1__py3-none-win_amd64.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.
@@ -1,6 +1,6 @@
1
1
  """Release-line constants shared by runtime packaging checks."""
2
2
 
3
- SDK_VERSION = "0.1.0.dev0"
3
+ SDK_VERSION = "0.1.0.dev1"
4
4
  PROTOCOL_MAJOR = 1
5
5
  PROTOCOL_MINOR = 0
6
6
  SCHEMA_VERSION = 3
@@ -8,6 +8,8 @@ SCHEMA_VERSION = 3
8
8
 
9
9
  def daemon_version_for_sdk(version: str = SDK_VERSION) -> str:
10
10
  """Map the Python package line to the canonical Go daemon line."""
11
- if version.endswith(".dev0"):
12
- return version[: -len(".dev0")] + "-dev"
11
+ if ".dev" in version:
12
+ base, _, suffix = version.rpartition(".dev")
13
+ if suffix.isdigit():
14
+ return f"{base}-dev"
13
15
  return version
@@ -4,8 +4,8 @@
4
4
  "arch": "amd64",
5
5
  "filename": "ringo-task-queue-windows-amd64.exe",
6
6
  "os": "windows",
7
- "sha256": "b798bf7c05b77ead06223392a620d8e4cdb8e9b3187ef8951e764f8431cbe4df",
8
- "size": 22699520
7
+ "sha256": "c24105e131ddd8f2615739ebd4daf670313396e1a39e2f8c3316eb35c4dbd036",
8
+ "size": 22855680
9
9
  }
10
10
  ],
11
11
  "buildCommit": "bench",
@@ -14,7 +14,7 @@
14
14
  "name": "ringo-task-queue",
15
15
  "protocolMajor": 1,
16
16
  "protocolMinor": 0,
17
- "releaseManifestSha256": "a51e43f79e1a7324c77f9069b1358540a4142b6a24d88fa14a300da945183071",
17
+ "releaseManifestSha256": "c94782d799fae3995c49fecac7f4cb7ef65154c67351f587ad2841a5e59c2471",
18
18
  "schemaVersion": 3,
19
- "version": "0.1.0-dev"
19
+ "version": "0.1.0-dev.1"
20
20
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: ringo-task-queue
3
- Version: 0.1.0.dev0
3
+ Version: 0.1.0.dev1
4
4
  Summary: Python asyncio SDK for Ringo Task Queue with a bundled offline Go daemon
5
5
  Author: Ringo Task Queue contributors
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  ringo_task_queue/__init__.py,sha256=MUeo1atWuaoNITczk6hDs4zYLI18IEpkVBHOE3wGhFc,1381
2
2
  ringo_task_queue/_pb.py,sha256=gA8HMCx9ZXEMB-ca6me8CYXdRLLPzUXVIz63Q4bz75I,5683
3
- ringo_task_queue/_version.py,sha256=5fU57YlC-4FhzBd2ppLripDFU1qd0QMs-5SWFnFz_9U,388
3
+ ringo_task_queue/_version.py,sha256=mi2kCx2g3PrLd5Vs37riqprlTm5cocdQfVc1vlWyCe4,446
4
4
  ringo_task_queue/binary.py,sha256=lJtFz_t5BuxDV4dMAqQDpP3mhTvJlnPBGnaiB0Z9D04,9526
5
5
  ringo_task_queue/client.py,sha256=GT-JiCMshtf_SFUFvjU_ayi7C0JyuQYOeLrmwISoFLc,33570
6
6
  ringo_task_queue/daemon.py,sha256=YS8otZpD9hqKeASb2S8ZWLCWzQj6-FYUb-grmYSnrIs,19849
@@ -10,9 +10,9 @@ ringo_task_queue/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  ringo_task_queue/worker.py,sha256=LD-J9XnQBxJWC2xvVi4tCAzms-O7wfkflSnoEFZXwnM,30366
11
11
  ringo_task_queue/_proto/ringo/v1/queue_pb2.py,sha256=Z4S0mNwPerMshRr7DUooj9oeecbaYG4JUpMJJlwVb0o,18074
12
12
  ringo_task_queue/_proto/ringo/v1/queue_pb2_grpc.py,sha256=eKtdXhZk3BP1I9IaYQlEgUF_K2WZLzBuIq7koWLhQ00,26066
13
- ringo_task_queue/bin/manifest.json,sha256=6mfoRB8VFN4NAX1NVfYHx4IJmmImAV1eBgJZhK9UrFY,572
14
- ringo_task_queue/bin/ringo-task-queue-windows-amd64.exe,sha256=t5i_fAW3fq0GIjOSpiDY5M246bMYfviVHnZPhDHL5N8,22699520
15
- ringo_task_queue-0.1.0.dev0.dist-info/METADATA,sha256=s_SkJVKmqC2OqhdIDGGKlu0hZvPWqFypqbhtdT5iF7A,13515
16
- ringo_task_queue-0.1.0.dev0.dist-info/WHEEL,sha256=0nQjyt02uAQbhbYKWZzlDb_ZXUmJUwgypQJ-m16yWKo,94
17
- ringo_task_queue-0.1.0.dev0.dist-info/licenses/LICENSE,sha256=yK3nnJz_bbOAPlcJqAooYcvecNJnBH9miT_X8Qrerv4,1086
18
- ringo_task_queue-0.1.0.dev0.dist-info/RECORD,,
13
+ ringo_task_queue/bin/manifest.json,sha256=LfSz8o5TEU1ZEeHJ02hgD3i6-yXz6jAeI3ceLZMIB7Y,574
14
+ ringo_task_queue/bin/ringo-task-queue-windows-amd64.exe,sha256=wkEF4THd2PJhVznr1Nr2cDEzluGjni-MMxbrNcTb0DY,22855680
15
+ ringo_task_queue-0.1.0.dev1.dist-info/METADATA,sha256=OuPm63uROxIrdFMeW8qgxSMTd6UnYbCfTcz2TuUSrVc,13515
16
+ ringo_task_queue-0.1.0.dev1.dist-info/WHEEL,sha256=0nQjyt02uAQbhbYKWZzlDb_ZXUmJUwgypQJ-m16yWKo,94
17
+ ringo_task_queue-0.1.0.dev1.dist-info/licenses/LICENSE,sha256=yK3nnJz_bbOAPlcJqAooYcvecNJnBH9miT_X8Qrerv4,1086
18
+ ringo_task_queue-0.1.0.dev1.dist-info/RECORD,,