From 2939dde0291b90fcfb7888f2b8f6ab70e2cee21b Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Fri, 21 Jun 2019 20:57:00 +0200 Subject: [PATCH] Move to official v2.1.0 of pebble --- .../certbot_integration_tests/utils/pebble_artifacts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py b/certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py index bc7711e75..286260e09 100644 --- a/certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py +++ b/certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py @@ -6,7 +6,7 @@ import stat import pkg_resources import requests -PEBBLE_VERSION = 'v2.0.3' +PEBBLE_VERSION = 'v2.1.0' ASSETS_PATH = pkg_resources.resource_filename('certbot_integration_tests', 'assets') @@ -25,7 +25,7 @@ def fetch(workspace): def _fetch_asset(asset, suffix): asset_path = os.path.join(ASSETS_PATH, '{0}_{1}_{2}'.format(asset, PEBBLE_VERSION, suffix)) if not os.path.exists(asset_path): - asset_url = ('https://github.com/adferrand/pebble/releases/download/{0}/{1}_{2}' + asset_url = ('https://github.com/letsencrypt/pebble/releases/download/{0}/{1}_{2}' .format(PEBBLE_VERSION, asset, suffix)) response = requests.get(asset_url) response.raise_for_status()