Title: [286605] trunk/Tools
- Revision
- 286605
- Author
- [email protected]
- Date
- 2021-12-07 12:11:30 -0800 (Tue, 07 Dec 2021)
Log Message
[reporelaypy] Autoinstall missing lupa fakeredis dependency
https://bugs.webkit.org/show_bug.cgi?id=233934
Reviewed by Jonathan Bedard.
Using the same version as resultsdbpy. Avoids ImportErrors running the
webkitpy suite when they're not installed.
* Scripts/libraries/reporelaypy/reporelaypy/__init__.py: Add lupa and
bump version.
* Scripts/libraries/reporelaypy/setup.py: Bump version.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (286604 => 286605)
--- trunk/Tools/ChangeLog 2021-12-07 20:11:07 UTC (rev 286604)
+++ trunk/Tools/ChangeLog 2021-12-07 20:11:30 UTC (rev 286605)
@@ -1,3 +1,17 @@
+2021-12-07 Lauro Moura <[email protected]>
+
+ [reporelaypy] Autoinstall missing lupa fakeredis dependency
+ https://bugs.webkit.org/show_bug.cgi?id=233934
+
+ Reviewed by Jonathan Bedard.
+
+ Using the same version as resultsdbpy. Avoids ImportErrors running the
+ webkitpy suite when they're not installed.
+
+ * Scripts/libraries/reporelaypy/reporelaypy/__init__.py: Add lupa and
+ bump version.
+ * Scripts/libraries/reporelaypy/setup.py: Bump version.
+
2021-12-07 Kyle Piddington <[email protected]>
Roll ANGLE to include upstreamed Metal backend
Modified: trunk/Tools/Scripts/libraries/reporelaypy/reporelaypy/__init__.py (286604 => 286605)
--- trunk/Tools/Scripts/libraries/reporelaypy/reporelaypy/__init__.py 2021-12-07 20:11:07 UTC (rev 286604)
+++ trunk/Tools/Scripts/libraries/reporelaypy/reporelaypy/__init__.py 2021-12-07 20:11:30 UTC (rev 286605)
@@ -44,7 +44,7 @@
"Please install webkitcorepy with `pip install webkitcorepy --extra-index-url <package index URL>`"
)
-version = Version(0, 1, 1)
+version = Version(0, 1, 2)
import webkitflaskpy
@@ -54,6 +54,7 @@
AutoInstall.register(Package('fakeredis', Version(1, 5, 2)))
AutoInstall.register(Package('hiredis', Version(1, 1, 0)))
+AutoInstall.register(Package('lupa', Version(1, 9)))
AutoInstall.register(Package('redis', Version(3, 5, 3)))
AutoInstall.register(Package('sortedcontainers', Version(2, 4, 0)))
Modified: trunk/Tools/Scripts/libraries/reporelaypy/setup.py (286604 => 286605)
--- trunk/Tools/Scripts/libraries/reporelaypy/setup.py 2021-12-07 20:11:07 UTC (rev 286604)
+++ trunk/Tools/Scripts/libraries/reporelaypy/setup.py 2021-12-07 20:11:30 UTC (rev 286605)
@@ -30,7 +30,7 @@
setup(
name='reporelaypy',
- version='0.1.1',
+ version='0.1.2',
description='Library for visualizing, processing and storing test results.',
long_description=readme(),
classifiers=[
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes