From c388b707a8b400df0b517039c1e7163145c6d52f Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Mon, 28 Dec 2020 15:50:36 +0100 Subject: [PATCH] Prepare for next version v0.7.3. --- doc/conf.py | 2 +- pyVHDLModel/__init__.py | 1 + setup.py | 12 +++--------- 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index bb8df14e3..5b45b230d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -37,7 +37,7 @@ def _LatestTagName(): # The full version, including alpha/beta/rc tags version = "0.7" # The short X.Y version. -release = "0.7.1" # The full version, including alpha/beta/rc tags. +release = "0.7.3" # The full version, including alpha/beta/rc tags. try: if _IsUnderGitControl: latestTagName = _LatestTagName()[1:] # remove prefix "v" diff --git a/pyVHDLModel/__init__.py b/pyVHDLModel/__init__.py index afa897fde..9f2606031 100644 --- a/pyVHDLModel/__init__.py +++ b/pyVHDLModel/__init__.py @@ -36,3 +36,4 @@ # # SPDX-License-Identifier: Apache-2.0 # ============================================================================== +__version__ = "0.7.3" diff --git a/setup.py b/setup.py index 7f4513a8b..d2b3f119a 100644 --- a/setup.py +++ b/setup.py @@ -46,11 +46,11 @@ projectName = "pyVHDLModel" github_url = "https://github.com/vhdl/" + projectName -rtd_url = "https://" + projectName + ".readthedocs.io/en/latest/" +rtd_url = "https://vhdl.github.io/" + projectName setuptools.setup( name=projectName, - version="0.7.2", + version="0.7.3", author="Patrick Lehmann", author_email="Paebbels@gmail.com", @@ -70,16 +70,12 @@ # download_url="https://github.com/vhdl/pyVHDLModel/tarball/0.1.0", packages=setuptools.find_packages(), - # entry_points={ - # 'console_scripts': [ - # "VHDLParser = pyVHDLParser.CLI.VHDLParser:main" - # ] - # }, classifiers=[ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Development Status :: 3 - Alpha", # "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -89,6 +85,4 @@ python_requires='>=3.8', install_requires=requirements, - # provides= - # obsoletes= )