From 2105a515d749b74eef9a6bb6af008aa6a842e313 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Mon, 20 Aug 2018 17:53:45 +0100 Subject: New upstream version 1.1.4 --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 8beaad3..e0ed5d7 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,7 @@ # Copyright 2017 Canonical Ltd. # Licensed under the LGPLv3, see LICENCE file for details. +import sys import platform from setuptools import ( @@ -12,7 +13,8 @@ from setuptools import ( PROJECT_NAME = 'macaroonbakery' -VERSION = (1, 1, 3) +# version 1.1.4 +VERSION = (1, 1, 4) def get_version(): @@ -47,6 +49,9 @@ if len(distribution) == 3 and distribution[2] == 'trusty': 'ndg_httpsclient==0.3.3', ]) +if sys.version_info.major == 2: + requirements.append('ipaddress') + setup( name=PROJECT_NAME, -- cgit v1.2.3