Skip to content

Commit e6b8f4a

Browse files
authored
Merge pull request #1 from dau-dev/tkp/hf
Hotfix for library inclusion
2 parents 2a941ff + 2d16ff3 commit e6b8f4a

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ authors = [
1212
description = "Python wrapping/binding for systemc"
1313
readme = "README.md"
1414
license = { text = "Apache-2.0" }
15-
version = "3.0.2.0"
15+
version = "3.0.2.1"
1616
requires-python = ">=3.10"
1717
keywords = []
1818

@@ -60,7 +60,7 @@ Repository = "https://github.com/dau-dev/systemc-python"
6060
Homepage = "https://github.com/dau-dev/systemc-python"
6161

6262
[tool.bumpversion]
63-
current_version = "3.0.2.0"
63+
current_version = "3.0.2.1"
6464
commit = true
6565
tag = true
6666
commit_args = "-s"
@@ -116,6 +116,7 @@ fail_under = 50
116116
artifacts = [
117117
"systemc/bin/",
118118
"systemc/include/",
119+
"systemc/lib/",
119120
"systemc/tests/",
120121
]
121122
[tool.hatch.build.sources]
@@ -153,11 +154,13 @@ exclude = [
153154
"/.gitmodules",
154155
"/.gitignore",
155156
"/pyproject.toml",
157+
"!/lib/",
158+
"!/lib/**",
156159
]
157160

158161
[tool.hatch.build.targets.wheel.shared-data]
159162
"systemc/include" = "include/systemc"
160-
"systemc/lib" = "lib/systemc"
163+
"systemc/lib" = "lib/"
161164
"systemc/share" = "share/systemc"
162165

163166
[tool.pytest.ini_options]

systemc/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import os
22

3-
4-
__version__ = "3.0.2.0"
3+
__version__ = "3.0.2.1"
54

65

76
def include_path():

0 commit comments

Comments
 (0)