Skip to content

Commit

Permalink
[webkit*py] Fix excluded directories in published packages
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=263970
rdar://117742552

Reviewed by Elliott Williams.

* Tools/Scripts/libraries/webkitscmpy/MANIFEST.in: Add json data files and testing directory.
* Tools/Scripts/libraries/webkitcorepy/setup.py: Bump version.
* Tools/Scripts/libraries/webkitcorepy/webkitcorepy/__init__.py: Ditto.
* Tools/Scripts/libraries/webkitscmpy/setup.py: Include 'tests.hooks' directory, bump version.
* Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py: Bump version.

Canonical link: https://commits.webkit.org/270025@main
  • Loading branch information
JonWBedard committed Oct 31, 2023
1 parent 6278367 commit db7018e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Tools/Scripts/libraries/webkitcorepy/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def readme():

setup(
name='webkitcorepy',
version='0.16.6',
version='0.16.7',
description='Library containing various Python support classes and functions.',
long_description=readme(),
classifiers=[
Expand All @@ -50,6 +50,7 @@ def readme():
packages=[
'webkitcorepy',
'webkitcorepy.mocks',
'webkitcorepy.testing',
'webkitcorepy.tests',
'webkitcorepy.tests.mocks',
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
from webkitcorepy.filtered_call import filtered_call
from webkitcorepy.partial_proxy import PartialProxy

version = Version(0, 16, 6)
version = Version(0, 16, 7)

from webkitcorepy.autoinstall import Package, AutoInstall
if sys.version_info > (3, 0):
Expand Down
2 changes: 2 additions & 0 deletions Tools/Scripts/libraries/webkitscmpy/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
include README.md
include webkitscmpy/mocks/*.json
include webkitscmpy/test/hooks/prepare-commit-msg
2 changes: 1 addition & 1 deletion Tools/Scripts/libraries/webkitscmpy/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def readme():

setup(
name='webkitscmpy',
version='6.7.0',
version='6.7.2',
description='Library designed to interact with git and svn repositories.',
long_description=readme(),
classifiers=[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _maybe_add_webkitcorepy_path():
"Please install webkitcorepy with `pip install webkitcorepy --extra-index-url <package index URL>`"
)

version = Version(6, 7, 0)
version = Version(6, 7, 2)

AutoInstall.register(Package('fasteners', Version(0, 15, 0)))
AutoInstall.register(Package('jinja2', Version(2, 11, 3)))
Expand Down

0 comments on commit db7018e

Please sign in to comment.