Add Riverbank Computing as extra index for PyQt requirements

Easier fix instead of 6c4be8ef03.
Seems to get picked up just fine, and shouldn't hurt when it's not needed, as we
don't use --pre. Thus, no development releases should be installed.
This commit is contained in:
Florian Bruhin 2024-04-30 23:56:53 +02:00
parent 0f51171141
commit 470ec752e1
7 changed files with 13 additions and 1 deletions

View File

@ -5,3 +5,4 @@ PyQt6-Qt6==6.7.0
PyQt6-sip==13.6.0
PyQt6-WebEngine==6.7.0
PyQt6-WebEngine-Qt6==6.7.0
--extra-index-url https://www.riverbankcomputing.com/pypi/simple/

View File

@ -2,3 +2,6 @@ PyQt6 >= 6.7, < 6.8
PyQt6-Qt6 >= 6.7, < 6.8
PyQt6-WebEngine >= 6.7, < 6.8
PyQt6-WebEngine-Qt6 >= 6.7, < 6.8
# WORKAROUND for https://www.riverbankcomputing.com/pipermail/pyqt/2024-April/045832.html
#@ add: --extra-index-url https://www.riverbankcomputing.com/pypi/simple/

View File

@ -5,3 +5,4 @@ PyQt6-Qt6==6.7.0
PyQt6-sip==13.6.0
PyQt6-WebEngine==6.7.0
PyQt6-WebEngine-Qt6==6.7.0
--extra-index-url https://www.riverbankcomputing.com/pypi/simple/

View File

@ -2,3 +2,6 @@ PyQt6
PyQt6-Qt6
PyQt6-WebEngine
PyQt6-WebEngine-Qt6
# WORKAROUND for https://www.riverbankcomputing.com/pipermail/pyqt/2024-April/045832.html
#@ add: --extra-index-url https://www.riverbankcomputing.com/pypi/simple/

View File

@ -5,3 +5,4 @@ PyQt6-Qt6==6.7.0
PyQt6-sip==13.6.0
PyQt6-WebEngine==6.7.0
PyQt6-WebEngine-Qt6==6.7.0
--extra-index-url https://www.riverbankcomputing.com/pypi/simple/

View File

@ -2,3 +2,6 @@ PyQt6
PyQt6-Qt6
PyQt6-WebEngine
PyQt6-WebEngine-Qt6
# WORKAROUND for https://www.riverbankcomputing.com/pipermail/pyqt/2024-April/045832.html
#@ add: --extra-index-url https://www.riverbankcomputing.com/pypi/simple/

View File

@ -75,7 +75,7 @@ def check_changelog_urls(_args: argparse.Namespace = None) -> bool:
with open(outfile, 'r', encoding='utf-8') as f:
for line in f:
line = line.strip()
if line.startswith('#') or not line:
if line.startswith(('#', '--')) or not line:
continue
req, _version = recompile_requirements.parse_versioned_line(line)
if req.startswith('./'):