From ae02f603a0cc9663e75fd822a3914089f97e8b36 Mon Sep 17 00:00:00 2001 From: XiaojueGuan Date: Sun, 13 May 2018 21:14:31 +0800 Subject: [PATCH] Trivial: update pypi url to new url Change-Id: I069ca4e8cfbd3d991c958e5383eee327c443402c --- CHANGELOG.rst | 2 +- doc/source/quick_start/tutorial/step_5_task_templates.rst | 2 +- tests/ci/sync_requirements.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8ab670fb..67187b6b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -112,6 +112,6 @@ Fixed ~~~~~ * The support of `kubernetes python client - `_ (which is used by Magnum plugins) + `_ (which is used by Magnum plugins) is not limited by 3.0.0 max version. You can use more modern releases of that library. diff --git a/doc/source/quick_start/tutorial/step_5_task_templates.rst b/doc/source/quick_start/tutorial/step_5_task_templates.rst index 0e9d5485..f193c533 100644 --- a/doc/source/quick_start/tutorial/step_5_task_templates.rst +++ b/doc/source/quick_start/tutorial/step_5_task_templates.rst @@ -375,4 +375,4 @@ shared with others. .. references: -.. _Jinja2: https://pypi.python.org/pypi/Jinja2 +.. _Jinja2: https://pypi.org/project/Jinja2 diff --git a/tests/ci/sync_requirements.py b/tests/ci/sync_requirements.py index 272520e1..d6887d05 100644 --- a/tests/ci/sync_requirements.py +++ b/tests/ci/sync_requirements.py @@ -84,7 +84,7 @@ class PYPIPackage(object): if self.package_name in _PYPI_CACHE: self._pypi_info = _PYPI_CACHE[self.package_name] else: - resp = requests.get("https://pypi.python.org/pypi/%s/json" % + resp = requests.get("https://pypi.org/pypi/%s/json" % self.package_name) if resp.status_code != 200: print("An error occurred while checking '%s' package at "