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 <roberto.rosario@mayan-edms.com>
This commit is contained in:
Roberto Rosario
2019-12-18 22:47:19 -04:00
parent 1a548a6df8
commit a78e47e276
2 changed files with 5 additions and 1 deletions

View File

@@ -27,6 +27,10 @@
(@lokesh1095) for the original report and solution. GitLab issue #494. (@lokesh1095) for the original report and solution. GitLab issue #494.
- Settings: Display overridden instead of overrided. - Settings: Display overridden instead of overrided.
GitLab merge !65. Thanks to Rob de Canha-Knight (@rssfed23). 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) 3.3.5 (2019-12-13)
================== ==================

View File

@@ -1,4 +1,4 @@
from __future__ import print_function, unicode_literals from __future__ import print_function, unicode_literals
MAYAN_PYPI_NAME = 'mayan-edms' MAYAN_PYPI_NAME = 'mayan-edms'
PYPI_URL = 'https://pypi.python.org/pypi' PYPI_URL = 'https://pypi.org'