mirror of https://github.com/docker/docker-py.git
Merge branch 'terminalmage-version_info'
This commit is contained in:
commit
b2c8b797fe
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
version = "1.1.1-dev"
|
||||
version_info = tuple([int(d) for d in version.replace("-dev", "").split(".")])
|
||||
|
|
|
|||
Loading…
Reference in New Issue