File: version.py

package info (click to toggle)
python-coverage 3.7.1%2Bdfsg.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,808 kB
  • ctags: 1,522
  • sloc: python: 10,533; ansic: 530; makefile: 172; sh: 124; xml: 59
file content (9 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
"""The version and URL for coverage.py"""
# This file is exec'ed in setup.py, don't import anything!

__version__ = "3.7.1"                   # 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__