This is an automated email from the ASF dual-hosted git repository.
sungwy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new a17ba565 Support python 3.12 in poetry (#1192)
a17ba565 is described below
commit a17ba5658e4b6a9ad6dfa64c0e0ae4ebd77bf755
Author: Kevin Liu <[email protected]>
AuthorDate: Mon Sep 23 06:08:00 2024 -0700
Support python 3.12 in poetry (#1192)
* allow 3.12
* more
---
.github/workflows/python-release.yml | 2 +-
poetry.lock | 4 ++--
pyproject.toml | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/python-release.yml
b/.github/workflows/python-release.yml
index 664409af..8ded6989 100644
--- a/.github/workflows/python-release.yml
+++ b/.github/workflows/python-release.yml
@@ -69,7 +69,7 @@ jobs:
env:
# Ignore 32 bit architectures
CIBW_ARCHS: "auto64"
- CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8,<=3.12"
+ CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8,<3.13"
CIBW_TEST_REQUIRES: "pytest==7.4.2 moto==5.0.1"
CIBW_TEST_EXTRAS: "s3fs,glue"
CIBW_TEST_COMMAND: "pytest {project}/tests/avro/test_decoder.py"
diff --git a/poetry.lock b/poetry.lock
index 53181cc8..cdfdc46c 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -4649,5 +4649,5 @@ zstandard = ["zstandard"]
[metadata]
lock-version = "2.0"
-python-versions = ">=3.8, <3.12, !=3.9.7"
-content-hash =
"415b57aefef279427e674d3d7fc58bc1d001c7fca2bfc346ec1c7af3bccfdc8d"
+python-versions = "^3.8, <3.13, !=3.9.7"
+content-hash =
"086f6774fe006d24ded1141068f63f2aa22c356c75979b2b44781d43dc10d977"
diff --git a/pyproject.toml b/pyproject.toml
index 8bf84521..7126f905 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -50,7 +50,7 @@ include = [
]
[tool.poetry.dependencies]
-python = ">=3.8, <3.12, !=3.9.7"
+python = "^3.8, <3.13, !=3.9.7"
mmh3 = ">=4.0.0,<5.0.0"
requests = ">=2.20.0,<3.0.0"
click = ">=7.1.1,<9.0.0"