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:17:44 UTC

[avro] 01/01: AVRO-3672: Add CI testing for Python 3.11

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

mgrigorov pushed a commit to branch avro-3672-python-3.11
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 11f0ccbce39617ae7080be8871efe9cc0b157e5c
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Mon Nov 14 11:17:10 2022 +0200

    AVRO-3672: Add CI testing for Python 3.11
    
    Signed-off-by: Martin Tzvetanov Grigorov <mg...@apache.org>
---
 .github/workflows/test-lang-py.yml | 2 ++
 lang/py/setup.cfg                  | 1 +
 2 files changed, 3 insertions(+)

diff --git a/.github/workflows/test-lang-py.yml b/.github/workflows/test-lang-py.yml
index 4b67a751c..452251b88 100644
--- a/.github/workflows/test-lang-py.yml
+++ b/.github/workflows/test-lang-py.yml
@@ -40,6 +40,7 @@ jobs:
       fail-fast: false
       matrix:
         python:
+        - '3.11'
         - '3.10'
         - '3.9'
         - '3.8'
@@ -86,6 +87,7 @@ jobs:
       fail-fast: false
       matrix:
         python:
+        - '3.11'
         - '3.10'
         - '3.9'
         - '3.8'
diff --git a/lang/py/setup.cfg b/lang/py/setup.cfg
index adbeb0ff8..fbe0dd98f 100644
--- a/lang/py/setup.cfg
+++ b/lang/py/setup.cfg
@@ -38,6 +38,7 @@ classifiers =
     Programming Language :: Python :: 3.8
     Programming Language :: Python :: 3.9
     Programming Language :: Python :: 3.10
+    Programming Language :: Python :: 3.11
     Development Status :: 5 - Production/Stable
 
 [bdist_wheel]