Skip to content

Commit

Permalink
Fix build errors on macOS 13.6
Browse files Browse the repository at this point in the history
Issue #572
  • Loading branch information
ronaldoussoren committed Nov 27, 2023
1 parent 74ede11 commit c540a12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Version 10.1
This enables using regular Python filesystem APIs with URLs that refer to
local filesystem paths.

* :issue:`572`: Fix compilation issue when building on macOS 12
* :issue:`572`: Fix compilation issue when building on macOS 13 or earlier

Version 10.0
------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ static void __attribute__((__used__)) use_protocols(void)
p = PyObjC_IdToPython(@protocol(GCDirectionPadElementName); Py_DECREF(p);
#endif
#endif
#if PyObjC_BUILD_RELEASE >= 1300
#if PyObjC_BUILD_RELEASE >= 1400
p = PyObjC_IdToPython(@protocol(GCPhysicalInputSource));
Py_XDECREF(p);
#endif
Expand Down

0 comments on commit c540a12

Please sign in to comment.