From a78e47e276ca09f295c72c02494a4abd450ed07f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 18 Dec 2019 22:47:19 -0400 Subject: [PATCH] Update PyPI address used for new version check Avoid SSL errors from reusing the old address (pypi.python.org/pypi) certificate. GitLab issue #717. Thanks to Jordan Wages (@wagesj45) for the report. Signed-off-by: Roberto Rosario --- HISTORY.rst | 4 ++++ mayan/apps/dependencies/literals.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8d2a6d365f..b60f050c98 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -27,6 +27,10 @@ (@lokesh1095) for the original report and solution. GitLab issue #494. - Settings: Display overridden instead of overrided. GitLab merge !65. Thanks to Rob de Canha-Knight (@rssfed23). +- Update the address of PyPI when checking for new versions to avoid + SSL errors from reusing the old address (pypi.python.org/pypi) + certificate. GitLab issue #717. Thanks to Jordan Wages (@wagesj45) + for the report. 3.3.5 (2019-12-13) ================== diff --git a/mayan/apps/dependencies/literals.py b/mayan/apps/dependencies/literals.py index 0a8a45f603..1b4a6d0e4d 100644 --- a/mayan/apps/dependencies/literals.py +++ b/mayan/apps/dependencies/literals.py @@ -1,4 +1,4 @@ from __future__ import print_function, unicode_literals MAYAN_PYPI_NAME = 'mayan-edms' -PYPI_URL = 'https://pypi.python.org/pypi' +PYPI_URL = 'https://pypi.org'