Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Commit

Permalink
Set version to 7.1 for minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski committed Nov 3, 2024
1 parent cbd58d0 commit 2b50778
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
8 changes: 1 addition & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyslang"
dynamic = ["version"]
version = "7.0.1"
description = "Python bindings for slang, a library for compiling SystemVerilog"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [{name = "Mike Popoloski"}]
Expand Down Expand Up @@ -41,8 +41,6 @@ build-backend = "scikit_build_core.build"
build-dir = "build/{wheel_tag}"
cmake.source-dir = "slang"
install.components = ["pylib"]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["_version.py"]
sdist.exclude = [
".github",
"slang/build",
Expand All @@ -56,10 +54,6 @@ SLANG_INCLUDE_TESTS = "OFF"
SLANG_INCLUDE_TOOLS = "OFF"
SLANG_INCLUDE_PYLIB = "ON"

[tool.setuptools_scm]
root = "slang"
write_to = "_version.py"

[tool.cibuildwheel]
archs = ["auto64"]
manylinux-x86_64-image = "manylinux_2_28"
Expand Down
6 changes: 0 additions & 6 deletions tests/test_basics.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ def test_bag():
"""


def test_version():
assert pyslang.__version__ == "{}.{}.{}".format(
VersionInfo.getMajor(), VersionInfo.getMinor(), VersionInfo.getPatch()
)


def test_sourcemanager():
sm = SourceManager()
buf = sm.assignText("coolfile.sv", testFile)
Expand Down

0 comments on commit 2b50778

Please sign in to comment.