Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[webkitcorepy] Fix pip package
https://bugs.webkit.org/show_bug.cgi?id=215717
<rdar://problem/67512294>

Reviewed by Dewei Zhu.

* Scripts/libraries/webkitcorepy/MANIFEST.in: Add cacert.pem.
* Scripts/libraries/webkitcorepy/setup.py: Include submodules.
* Scripts/libraries/webkitcorepy/webkitcorepy/__init__.py: Version bump.


Canonical link: https://commits.webkit.org/228471@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@265983 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
JonWBedard committed Aug 20, 2020
1 parent 65b75e2 commit 480edcd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
12 changes: 12 additions & 0 deletions Tools/ChangeLog
@@ -1,3 +1,15 @@
2020-08-20 Jonathan Bedard <jbedard@apple.com>

[webkitcorepy] Fix pip package
https://bugs.webkit.org/show_bug.cgi?id=215717
<rdar://problem/67512294>

Reviewed by Dewei Zhu.

* Scripts/libraries/webkitcorepy/MANIFEST.in: Add cacert.pem.
* Scripts/libraries/webkitcorepy/setup.py: Include submodules.
* Scripts/libraries/webkitcorepy/webkitcorepy/__init__.py: Version bump.

2020-08-20 Aakash Jain <aakash_jain@apple.com>

[ews] Handle bugs with unicode characters in title in ews emails
Expand Down
1 change: 1 addition & 0 deletions Tools/Scripts/libraries/webkitcorepy/MANIFEST.in
@@ -1 +1,2 @@
include README.md
include webkitcorepy/cacert.pem
7 changes: 6 additions & 1 deletion Tools/Scripts/libraries/webkitcorepy/setup.py
Expand Up @@ -48,7 +48,12 @@ def readme():
author='Jonathan Bedard',
author_email='jbedard@apple.com',
license='Modified BSD',
packages=['webkitcorepy'],
packages=[
'webkitcorepy',
'webkitcorepy.mocks',
'webkitcorepy.tests',
'webkitcorepy.tests.mocks',
],
install_requires=[
'mock',
'requests',
Expand Down
Expand Up @@ -35,7 +35,7 @@
from webkitcorepy.subprocess_utils import TimeoutExpired, CompletedProcess, run
from webkitcorepy.output_capture import LoggerCapture, OutputCapture, OutputDuplicate

version = Version(0, 3, 0)
version = Version(0, 4, 0)

from webkitcorepy.autoinstall import Package, AutoInstall
if sys.version_info > (3, 0):
Expand Down

0 comments on commit 480edcd

Please sign in to comment.