From 8266a168137d54307265572b6575a2dc570a1af3 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 3 May 2021 09:45:10 +0300 Subject: project.boost: Bintray was shut down The official website now links to jfrog.io: https://groups.google.com/g/boost-developers-archive/c/vxnAnvG7MCo?pli=1 --- project/boost/version.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'project/boost/version.py') diff --git a/project/boost/version.py b/project/boost/version.py index 3ba9901..5615403 100644 --- a/project/boost/version.py +++ b/project/boost/version.py @@ -63,8 +63,8 @@ class Version: def archive_name(self): return f'{self.dir_name}{self.archive_ext}' - def _get_bintray_url(self): - return f'https://dl.bintray.com/boostorg/release/{self}/source/{self.archive_name}' + def _get_jfrog_url(self): + return f'https://boostorg.jfrog.io/artifactory/main/release/{self}/source/{self.archive_name}' def _get_sourceforge_url(self): return f'https://sourceforge.net/projects/boost/files/boost/{self}/{self.archive_name}/download' @@ -73,5 +73,5 @@ class Version: if self._impl < _Version(1, 63, 0): # For versions older than 1.63.0, SourceForge is the only option: return [self._get_sourceforge_url()] - # Otherwise, Bintray is preferred (the official website links to it). - return [self._get_bintray_url(), self._get_sourceforge_url()] + # Otherwise, jfrog.io is preferred (the official website links to it). + return [self._get_jfrog_url(), self._get_sourceforge_url()] -- cgit v1.2.3