Skip to content

Commit

Permalink
Merge pull request #53 from streitl/feat/support-3.12
Browse files Browse the repository at this point in the history
feat: support python 3.12
  • Loading branch information
ynqa authored Nov 22, 2023
2 parents 776ec5e + 47b5d1b commit 0ebc59c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='pandavro',
version='1.7.2',
version='1.8.0',
description='The interface between Avro and pandas DataFrame',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ envlist =
py37-pandas{1}-fastavro{15,16,17,1},
py{38,39,310}-pandas{1,2}-fastavro{15,16,17,18,1},
py{311}-pandas{1,2}-fastavro{17,18,1},
py{312}-pandas{2}-fastavro{18,1},

[gh-actions]
python =
Expand All @@ -12,6 +13,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
deps =
Expand Down

0 comments on commit 0ebc59c

Please sign in to comment.