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

Changeset 286600 in webkit


Ignore:
Timestamp:
Dec 7, 2021, 10:25:33 AM (5 years ago)
Author:
Jonathan Bedard
Message:

[reporelaypy] Add implementation of commits.webkit.org (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=233734
<rdar://problem/85945101>

Unreviewed follow-up fix.

  • Scripts/libraries/reporelaypy/reporelaypy/init.py: Bump version, add sortedcontainers dependency.
  • Scripts/libraries/reporelaypy/setup.py: Bump version.
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r286596 r286600  
     12021-12-07  Jonathan Bedard  <jbedard@apple.com>
     2
     3        [reporelaypy] Add implementation of commits.webkit.org (Follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=233734
     5        <rdar://problem/85945101>
     6
     7        Unreviewed follow-up fix.
     8
     9        * Scripts/libraries/reporelaypy/reporelaypy/__init__.py: Bump version, add sortedcontainers dependency.
     10        * Scripts/libraries/reporelaypy/setup.py: Bump version.
     11
    1122021-12-07  Kimmo Kinnunen  <kkinnunen@apple.com>
    213
  • trunk/Tools/Scripts/libraries/reporelaypy/reporelaypy/__init__.py

    r286576 r286600  
    4545    )
    4646
    47 version = Version(0, 1, 0)
     47version = Version(0, 1, 1)
    4848
    4949import webkitflaskpy
     
    5656AutoInstall.register(Package('hiredis', Version(1, 1, 0)))
    5757AutoInstall.register(Package('redis', Version(3, 5, 3)))
     58AutoInstall.register(Package('sortedcontainers', Version(2, 4, 0)))
    5859
    5960name = 'reporelaypy'
  • trunk/Tools/Scripts/libraries/reporelaypy/setup.py

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