<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 4fa8f8d3de77e56dc7aa00b30717725ed4f3695c Mon Sep 17 00:00:00 2001
From: Sergey Fedorov &lt;vital.had@gmail.com&gt;
Date: Tue, 16 Apr 2024 17:37:13 +0800
Subject: [PATCH] properties.m: disable test that fails to compile with gcc

---
 pyobjc-core/Modules/objc/test/properties.m | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git pyobjc-core/Modules/objc/test/properties.m pyobjc-core/Modules/objc/test/properties.m
index b585db986..f05a46597 100644
--- pyobjc-core/Modules/objc/test/properties.m
+++ pyobjc-core/Modules/objc/test/properties.m
@@ -25,7 +25,7 @@ typedef NSObject&lt;NSObject&gt; ObjectClass;
     id       _prop12;
 }
 
-#if (PyObjC_BUILD_RELEASE &gt;= 1005)
+#if (PyObjC_BUILD_RELEASE &gt;= 1007)
 
 #pragma clang diagnostic push
 #pragma clang diagnostic ignored "-Wobjc-property-no-attribute"
@@ -51,7 +51,7 @@ typedef NSObject&lt;NSObject&gt; ObjectClass;
 
 @implementation OCPropertyDefinitions
 
-#if (PyObjC_BUILD_RELEASE &gt;= 1005)
+#if (PyObjC_BUILD_RELEASE &gt;= 1007)
 
 @synthesize prop1  = _prop1;
 @synthesize prop2  = _prop2;
</pre></body></html>