|
36 | 36 | # established at this point, and setup.py will use a version of next-$(revno).
|
37 | 37 | # If the releaselevel is 'final', then the tarball will be major.minor.micro.
|
38 | 38 | # Otherwise it is major.minor.micro~$(revno).
|
39 |
| -__version__ = (0, 3, 16, 'final', 0) |
| 39 | + |
| 40 | +# Uncomment when pbr 0.11 is released. |
| 41 | +#import pbr.version |
| 42 | +#_version = pbr.version.VersionInfo('fixtures').semantic_version() |
| 43 | +#__version__ = _version.version_tuple() |
| 44 | +#version = _version.release_string() |
| 45 | +__version__ = (0, 3, 17, 'final', 0) |
| 46 | + |
40 | 47 |
|
41 | 48 | __all__ = [
|
42 | 49 | 'ByteStream',
|
|
67 | 74 | ]
|
68 | 75 |
|
69 | 76 |
|
70 |
| -import pbr.version |
71 |
| - |
72 | 77 | from fixtures.fixture import (
|
73 | 78 | Fixture,
|
74 | 79 | FunctionFixture,
|
|
97 | 102 | )
|
98 | 103 | from fixtures.testcase import TestWithFixtures
|
99 | 104 |
|
100 |
| -# same format as sys.version_info: "A tuple containing the five components of |
101 |
| -# the version number: major, minor, micro, releaselevel, and serial. All |
102 |
| -# values except releaselevel are integers; the release level is 'alpha', |
103 |
| -# 'beta', 'candidate', or 'final'. The version_info value corresponding to the |
104 |
| -# Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a |
105 |
| -# releaselevel of 'dev' for unreleased under-development code. |
106 |
| -# |
107 |
| -# If the releaselevel is 'alpha' then the major/minor/micro components are not |
108 |
| -# established at this point, and setup.py will use a version of next-$(revno). |
109 |
| -# If the releaselevel is 'final', then the tarball will be major.minor.micro. |
110 |
| -# Otherwise it is major.minor.micro~$(revno). |
111 |
| - |
112 |
| -# Uncomment when pbr 0.11 is released. |
113 |
| -#_version = pbr.version.VersionInfo('fixtures').semantic_version() |
114 |
| -#__version__ = _version.version_tuple() |
115 |
| -#version = _version.release_string() |
116 |
| -__version__ = (0, 3, 17, 'alpha', 0) |
117 |
| - |
118 | 105 |
|
119 | 106 | def test_suite():
|
120 | 107 | import fixtures.tests
|
|
0 commit comments