Skip to content

Commit

Permalink
Support python 3.12 in poetry (#1192)
Browse files Browse the repository at this point in the history
* allow 3.12

* more
  • Loading branch information
kevinjqliu authored Sep 23, 2024
1 parent 1d9570d commit a17ba56
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a17ba56

Please sign in to comment.