You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
348 B
Python
10 lines
348 B
Python
"""The version and URL for coverage.py"""
|
|
# This file is exec'ed in setup.py, don't import anything!
|
|
|
|
__version__ = "3.7" # see detailed history in CHANGES.txt
|
|
|
|
__url__ = "http://nedbatchelder.com/code/coverage"
|
|
if max(__version__).isalpha():
|
|
# For pre-releases, use a version-specific URL.
|
|
__url__ += "/" + __version__
|