From 43128f628311e7dd69fc5aab802b9a0242efef87 Mon Sep 17 00:00:00 2001 From: Mohamed Gaber Date: Mon, 7 Oct 2024 16:51:17 +0300 Subject: [PATCH] wheels: move from postreleases to minor versions, remove authors --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index f9d455f0b..221965971 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,9 @@ yosys_version_rx = re.compile(r"YOSYS_VER\s*:=\s*([\w\-\+\.]+)") version = yosys_version_rx.search( open(os.path.join(__dir__, "Makefile"), encoding="utf8").read() -)[1].replace("+", ".post") +)[1].replace( + "+", "." +) # Convert to patch version class libyosys_so_ext(Extension): @@ -78,8 +80,6 @@ setup( description="Python access to libyosys", long_description=open(os.path.join(__dir__, "README.md")).read(), long_description_content_type="text/markdown", - author="Claire Xenia Wolf", - author_email="claire@yosyshq.com", install_requires=["wheel", "setuptools"], classifiers=[ "License :: OSI Approved :: MIT License",