Skip to content

Commit 55b8935

Browse files
Merge branch 'master' of github.com:ronaldoussoren/pyobjc
2 parents bf050d2 + 2ec0204 commit 55b8935

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

docs/changelog.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ Version 10.1
2929
macOS 13, instead of only testing on the latest macOS version. Most
3030
issues found where problems in the testsuite itself, but not all.
3131

32-
Some of the changes skip tests on older macOS versions (10.*) due
33-
to running into what appears to be crashing platform bugs.
32+
Some of the changes skip tests on older macOS versions (10.12, 10.13
33+
and 10.14) due to running into what appears to be crashing
34+
platform bugs.
3435

3536
* :issue:`581`: Fix dependencies between framework binding packages
3637

pyobjc-core/Lib/PyObjCTools/TestSupport.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ def testSnowLeopardCode(self):
276276
"""
277277
return _unittest.skipUnless(
278278
os_level_key(os_release()) >= os_level_key(release),
279-
f"Requires OSX {release} or later",
279+
f"Requires macOS {release} or later",
280280
)
281281

282282

@@ -292,7 +292,7 @@ def testUntilLeopard(self):
292292
"""
293293
return _unittest.skipUnless(
294294
os_level_key(os_release()) <= os_level_key(release),
295-
f"Requires OSX up to {release}",
295+
f"Requires macOS up to {release}",
296296
)
297297

298298

@@ -310,13 +310,13 @@ def testUntilLeopard(self):
310310
os_level_key(min_release)
311311
<= os_level_key(os_release())
312312
<= os_level_key(max_release),
313-
f"Requires OSX {min_release} up to {max_release}",
313+
f"Requires macOS {min_release} up to {max_release}",
314314
)
315315

316316

317317
_poolclass = objc.lookUpClass("NSAutoreleasePool")
318318

319-
# NOTE: On at least OSX 10.8 there are multiple proxy classes for CFTypeRef...
319+
# NOTE: On at least macOS 10.8 there are multiple proxy classes for CFTypeRef...
320320
_nscftype = tuple(cls for cls in objc.getClassList(1) if "NSCFType" in cls.__name__)
321321

322322
_typealias = {}

0 commit comments

Comments
 (0)