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 "