From 2d16ff3a16ecab77124b236ee25ba3357a5d00bd Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Fri, 15 May 2026 13:08:10 -0700 Subject: [PATCH] Hotfix for library inclusion --- pyproject.toml | 9 ++++++--- systemc/__init__.py | 3 +-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2920d0b..d295caf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ authors = [ description = "Python wrapping/binding for systemc" readme = "README.md" license = { text = "Apache-2.0" } -version = "3.0.2.0" +version = "3.0.2.1" requires-python = ">=3.10" keywords = [] @@ -60,7 +60,7 @@ Repository = "https://github.com/dau-dev/systemc-python" Homepage = "https://github.com/dau-dev/systemc-python" [tool.bumpversion] -current_version = "3.0.2.0" +current_version = "3.0.2.1" commit = true tag = true commit_args = "-s" @@ -116,6 +116,7 @@ fail_under = 50 artifacts = [ "systemc/bin/", "systemc/include/", + "systemc/lib/", "systemc/tests/", ] [tool.hatch.build.sources] @@ -153,11 +154,13 @@ exclude = [ "/.gitmodules", "/.gitignore", "/pyproject.toml", + "!/lib/", + "!/lib/**", ] [tool.hatch.build.targets.wheel.shared-data] "systemc/include" = "include/systemc" -"systemc/lib" = "lib/systemc" +"systemc/lib" = "lib/" "systemc/share" = "share/systemc" [tool.pytest.ini_options] diff --git a/systemc/__init__.py b/systemc/__init__.py index 5abf1f0..5646ad6 100644 --- a/systemc/__init__.py +++ b/systemc/__init__.py @@ -1,7 +1,6 @@ import os - -__version__ = "3.0.2.0" +__version__ = "3.0.2.1" def include_path():