From f1fa89ea049c83abed07c1fc1011f28652d9c489 Mon Sep 17 00:00:00 2001 From: Daniel Bluhm Date: Wed, 11 Dec 2024 09:05:58 -0600 Subject: [PATCH] chore: fix build and bump version Signed-off-by: Daniel Bluhm --- pdm.lock | 2 +- pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pdm.lock b/pdm.lock index f92a334..9d6ee90 100644 --- a/pdm.lock +++ b/pdm.lock @@ -3,7 +3,7 @@ [metadata] groups = ["default", "cbor", "dev"] -strategy = ["cross_platform", "inherit_metadata"] +strategy = ["inherit_metadata"] lock_version = "4.5.0" content_hash = "sha256:64ede09b93bd0d058f2b1b55c6d25cd8631226caf81176c611e1d00e13ca574f" diff --git a/pyproject.toml b/pyproject.toml index bb60e3c..44de2a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "token-status-list" -version = "0.1.0a2.dev0" +version = "0.1.0a2.dev1" description = "Implementation of IETF Token Status List" authors = [ {name = "Daniel Bluhm", email = "dbluhm@pm.me"}, @@ -31,6 +31,9 @@ dev = [ "pytest-cov>=5.0.0", ] +[tool.pdm.build] +includes = ["token_status_list.py"] + [tool.ruff] line-length = 90 extend-exclude = ["example*.py"]