You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2022/11/14 09:27:36 UTC

[avro] branch avro-3667-fix-python-type-checks created (now 4ae07a5f4)

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch avro-3667-fix-python-type-checks
in repository https://gitbox.apache.org/repos/asf/avro.git


      at 4ae07a5f4 AVRO-3667: [Python] Python 3.10 CI test fails since a while

This branch includes the following new commits:

     new 4ae07a5f4 AVRO-3667: [Python] Python 3.10 CI test fails since a while

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[avro] 01/01: AVRO-3667: [Python] Python 3.10 CI test fails since a while

Posted by mg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch avro-3667-fix-python-type-checks
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 4ae07a5f4fd01b85951648f6b1ecb919a8ea1826
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Mon Nov 14 11:27:08 2022 +0200

    AVRO-3667: [Python] Python 3.10 CI test fails since a while
    
    Signed-off-by: Martin Tzvetanov Grigorov <mg...@apache.org>
---
 lang/py/avro/compatibility.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/py/avro/compatibility.py b/lang/py/avro/compatibility.py
index 0ce084ae6..9aefc0075 100644
--- a/lang/py/avro/compatibility.py
+++ b/lang/py/avro/compatibility.py
@@ -82,7 +82,7 @@ class SchemaCompatibilityResult:
     def __init__(
         self,
         compatibility: SchemaCompatibilityType = SchemaCompatibilityType.recursion_in_progress,
-        incompatibilities: List[SchemaIncompatibilityType] = None,
+        incompatibilities: Optional[List[SchemaIncompatibilityType]] = None,
         messages: Optional[Set[str]] = None,
         locations: Optional[Set[str]] = None,
     ):