Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,19 @@
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

# Default version
__version__ = '1.1.1'

# Get the correct version from file
try:
exec(open('version.py').read())
except:
pass

setup(
name='codacy-coverage',

version='1.1.0',
version=__version__,

description='Codacy coverage reporter for Python',
long_description=long_description,
Expand Down
1 change: 1 addition & 0 deletions version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '1.1.1'