Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/h11/_version.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1 statements  

1# This file must be kept very simple, because it is consumed from several 

2# places -- it is imported by h11/__init__.py, execfile'd by setup.py, etc. 

3 

4# We use a simple scheme: 

5# 1.0.0 -> 1.0.0+dev -> 1.1.0 -> 1.1.0+dev 

6# where the +dev versions are never released into the wild, they're just what 

7# we stick into the VCS in between releases. 

8# 

9# This is compatible with PEP 440: 

10# http://legacy.python.org/dev/peps/pep-0440/ 

11# via the use of the "local suffix" "+dev", which is disallowed on index 

12# servers and causes 1.0.0+dev to sort after plain 1.0.0, which is what we 

13# want. (Contrast with the special suffix 1.0.0.dev, which sorts *before* 

14# 1.0.0.) 

15 

16__version__ = "0.14.0"