Skip to content

Commit

Permalink
Disable pyobjc dependency on PyPy, where it's unsupported.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Feb 25, 2021
1 parent 9ef9636 commit d385e51
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v3.2.1
======

Disabled PyObjC dependency on PyPy where it's unsupported.

v3.2.0
======

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ packages = find_namespace:
include_package_data = true
python_requires = >=3.6
install_requires =
pyobjc; platform_system == "Darwin"
pyobjc; platform_system == "Darwin" and python_implementation != "PyPy"
# until Python 3.6 is dropped
singledispatch >= 3.6
setup_requires = setuptools_scm[toml] >= 3.4.1
Expand Down

0 comments on commit d385e51

Please sign in to comment.