Merge branch 'terminalmage-version_info'

This commit is contained in:
Joffrey F 2015-04-22 11:14:49 -07:00
commit b2c8b797fe
2 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .version import version
from .version import version, version_info
__version__ = version
__title__ = 'docker-py'

View File

@ -1 +1,2 @@
version = "1.1.1-dev"
version_info = tuple([int(d) for d in version.replace("-dev", "").split(".")])