Skip to content

Commit 1069547

Browse files
committed
Fix test - bump to 0.1.2
1 parent 2461914 commit 1069547

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

offwork/core/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from importlib.metadata import PackageNotFoundError
22
from importlib.metadata import version as _pkg_version
33

4-
_FALLBACK_VERSION = "0.1.0"
4+
_FALLBACK_VERSION = "0.1.2"
55

66
try:
77
_VERSION: str = _pkg_version("offwork")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "offwork"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Distributed Python task execution via automatic function serialization"
55
readme = "README.md"
66
authors = [

tests/test_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def test_deduplication_shared_dep(tmp_path: Path) -> None:
352352
def test_serialize_format_structure(tmp_path: Path) -> None:
353353
graph = _make_graph(tmp_path)
354354
data = json.loads(graph.serialize())
355-
assert data["version"] == "0.1.0"
355+
assert data["version"].startswith("0.1")
356356
assert "objects" in data
357357
assert "deps" in data
358358
assert "refs" in data

0 commit comments

Comments
 (0)