Kaydet (Commit) 99e1ee45 authored tarafından Erik Johnson's avatar Erik Johnson

Add a version_info attribute

This makes comparing docker-py versions *much* easier. Having to account
for the potential of a "-dev" suffix is a PITA.
üst 2f6579bf
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from .version import version from .version import version, version_info
__version__ = version __version__ = version
__title__ = 'docker-py' __title__ = 'docker-py'
......
version = "1.1.1-dev" version = "1.1.1-dev"
version_info = (1, 1, 1)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment