diff --git a/CHANGES.md b/CHANGES.md index 65534ef..481aee6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,12 @@ Change log for Zowie ==================== +Version 1.0.6 +-------------- + +This update limits the parts of the [PyObjC](https://pypi.org/project/pyobjc/) package that are required in `requirements.txt`, to improve installation time as well as avoid a conflict between `pyobjc-framework-PubSub` and the Python [PyPubSub](https://pypi.org/project/PyPubSub/) package used by [Bun](https://pypi.org/project/bun/). + + Version 1.0.5 -------------- diff --git a/requirements.txt b/requirements.txt index a453034..87ed73e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,9 @@ pyxattr >= 0.7.1 setuptools >= 41.0.1 sidetrack >= 1.0.0 -# The following is needed by the applescript module, but because the -# applescript module doesn't have a requirements.txt, installation -# via pip ends up missing this dependency: -pyobjc >= 7.0.1 +# The following are needed by the py-applescript module, but because the +# py-applescript module doesn't have a requirements.txt, installation via pip +# ends up missing these dependencies. +pyobjc-core >= 7.0.1 +pyobjc-framework-AppleScriptKit >= 7.0.1 +pyobjc-framework-AppleScriptObjC >= 7.0.1 diff --git a/setup.cfg b/setup.cfg index 2fbff1e..982367b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,7 +8,7 @@ [metadata] name = zowie -version = 1.0.5 +version = 1.0.6 description = Write Zotero select links into article PDF files author = Michael Hucka author_email = mhucka@caltech.edu