Skip to content

Commit

Permalink
Prepare for next version v0.7.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Dec 28, 2020
1 parent 09ae19b commit c388b70
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions pyVHDLModel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@
#
# SPDX-License-Identifier: Apache-2.0
# ==============================================================================
__version__ = "0.7.3"
12 changes: 3 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
Expand All @@ -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",
Expand All @@ -89,6 +85,4 @@

python_requires='>=3.8',
install_requires=requirements,
# provides=
# obsoletes=
)

0 comments on commit c388b70

Please sign in to comment.