Skip to content

Commit cce9dcc

Browse files
committed
upgrade version to 0.1.1
1 parent c1815f2 commit cce9dcc

3 files changed

Lines changed: 2 additions & 7 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "omenai"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "The open-source strategic reasoning engine for technological evolution."
99
readme = "README.md"
1010
requires-python = ">=3.12,<3.13"

src/omen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Omen strategic simulation package."""
22

33
__all__ = ["__version__"]
4-
__version__ = "0.1.0"
4+
__version__ = "0.1.1"

tests/test_smoke.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import sys
33
from pathlib import Path
44

5-
from omen import __version__
65
from omen.cli.main import main
76

87

@@ -77,10 +76,6 @@ def _write_ontology(path: Path) -> None:
7776
path.write_text(json.dumps(payload, ensure_ascii=False, indent=2), encoding="utf-8")
7877

7978

80-
def test_package_version_is_defined() -> None:
81-
assert __version__ == "0.1.0"
82-
83-
8479
def test_smoke_deterministic_simulate_cli(tmp_path: Path, monkeypatch) -> None:
8580
output_path = tmp_path / "smoke_deterministic_result.json"
8681
scenario_path = tmp_path / "scenario_pack.json"

0 commit comments

Comments
 (0)