We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff47123 commit fc34397Copy full SHA for fc34397
1 file changed
setup.py
@@ -5,7 +5,6 @@
5
# Copyright (c) 2015, Lars Asplund lars.anders.asplund@gmail.com
6
7
from setuptools import setup
8
-from os.path import exists
9
import os
10
11
@@ -31,7 +30,7 @@ def find_all_files(directory, endings=None):
31
30
32
setup(
33
name='vunit_hdl',
34
- version='0.42.0',
+ version='0.43.0',
35
packages=['vunit',
36
'vunit.com',
37
'vunit.test',
@@ -58,4 +57,4 @@ def find_all_files(directory, endings=None):
58
57
author='Lars Asplund',
59
author_email='lars.anders.asplund@gmail.com',
60
description="VUnit is an open source unit testing framework for VHDL.",
61
- long_description=(open('README.rst').read() if exists('README.rst') else '')) # nopep8
+ long_description=open('README.rst').read()) # nopep8
0 commit comments