This is an automated email from the ASF dual-hosted git repository.
blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new 06656f2333 Python: Add support for 3.11 (#6329)
06656f2333 is described below
commit 06656f2333abdede42dd42f40b7f5243c65b63f8
Author: Fokko Driesprong <[email protected]>
AuthorDate: Fri Dec 9 18:54:54 2022 +0100
Python: Add support for 3.11 (#6329)
Since https://github.com/apache/iceberg/pull/6295 and
https://github.com/apache/iceberg/pull/6294 have been merged, we should be
ready to support 3.11
Closes #6124
---
.github/workflows/python-ci.yml | 2 +-
python/pyproject.toml | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml
index 69a51fc1a3..e5f7e06d62 100644
--- a/.github/workflows/python-ci.yml
+++ b/.github/workflows/python-ci.yml
@@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
- python: ['3.8', '3.9', '3.10']
+ python: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
diff --git a/python/pyproject.toml b/python/pyproject.toml
index 8b8768afed..5ebe8e196e 100644
--- a/python/pyproject.toml
+++ b/python/pyproject.toml
@@ -30,7 +30,8 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10"
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11"
]
packages = [