silk-graph 0.3.0

Merkle-CRDT graph engine for distributed, conflict-free knowledge graphs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Version consistency — silk.__version__ must match the installed package.

The version lives in three places: Cargo.toml, pyproject.toml, and
python/silk/__init__.py. The first two feed the build; this test pins the
third to the installed metadata so a bump can't miss it.
"""

from importlib.metadata import version

import silk


def test_version_matches_package_metadata():
    assert silk.__version__ == version("silk-graph")