Skip to content

Commit a17ba56

Browse files
authored
Support python 3.12 in poetry (apache#1192)
* allow 3.12 * more
1 parent 1d9570d commit a17ba56

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/python-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
env:
7070
# Ignore 32 bit architectures
7171
CIBW_ARCHS: "auto64"
72-
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8,<=3.12"
72+
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8,<3.13"
7373
CIBW_TEST_REQUIRES: "pytest==7.4.2 moto==5.0.1"
7474
CIBW_TEST_EXTRAS: "s3fs,glue"
7575
CIBW_TEST_COMMAND: "pytest {project}/tests/avro/test_decoder.py"

poetry.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ include = [
5050
]
5151

5252
[tool.poetry.dependencies]
53-
python = ">=3.8, <3.12, !=3.9.7"
53+
python = "^3.8, <3.13, !=3.9.7"
5454
mmh3 = ">=4.0.0,<5.0.0"
5555
requests = ">=2.20.0,<3.0.0"
5656
click = ">=7.1.1,<9.0.0"

0 commit comments

Comments
 (0)