⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 286605 in webkit


Ignore:
Timestamp:
Dec 7, 2021, 12:11:30 PM (5 years ago)
Author:
Lauro Moura
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.
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r286603 r286605  
     12021-12-07  Lauro Moura  <lmoura@igalia.com>
     2
     3        [reporelaypy] Autoinstall missing lupa fakeredis dependency
     4        https://bugs.webkit.org/show_bug.cgi?id=233934
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        Using the same version as resultsdbpy. Avoids ImportErrors running the
     9        webkitpy suite when they're not installed.
     10
     11        * Scripts/libraries/reporelaypy/reporelaypy/__init__.py: Add lupa and
     12        bump version.
     13        * Scripts/libraries/reporelaypy/setup.py: Bump version.
     14
    1152021-12-07  Kyle Piddington  <kpiddington@apple.com>
    216
  • trunk/Tools/Scripts/libraries/reporelaypy/reporelaypy/__init__.py

    r286600 r286605  
    4545    )
    4646
    47 version = Version(0, 1, 1)
     47version = Version(0, 1, 2)
    4848
    4949import webkitflaskpy
     
    5555AutoInstall.register(Package('fakeredis', Version(1, 5, 2)))
    5656AutoInstall.register(Package('hiredis', Version(1, 1, 0)))
     57AutoInstall.register(Package('lupa', Version(1, 9)))
    5758AutoInstall.register(Package('redis', Version(3, 5, 3)))
    5859AutoInstall.register(Package('sortedcontainers', Version(2, 4, 0)))
  • trunk/Tools/Scripts/libraries/reporelaypy/setup.py

    r286600 r286605  
    3131setup(
    3232    name='reporelaypy',
    33     version='0.1.1',
     33    version='0.1.2',
    3434    description='Library for visualizing, processing and storing test results.',
    3535    long_description=readme(),
Note: See TracChangeset for help on using the changeset viewer.