Skip to content

Commit

Permalink
Add python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-ince committed Nov 24, 2023
1 parent d2854fc commit db80237
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
3.9
3.10
3.11
3.12
- name: install poetry
run: |
python3 -m venv $POETRY_HOME
Expand All @@ -31,4 +32,4 @@ jobs:
- name: install dependencies and build
run: poetry install
- name: run tests
run: poetry run tox
run: poetry run tox -p
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tool.poetry]
name = "neo4j-arrow"
name = "neo4j_arrow"
version = "0.6.0"
description = "Neo4j Arrow Client Library"
authors = ["Ali Ince <ali.ince@neo4j.com>"]
authors = ["Connectors Team <connectors@neo4j.com>"]
readme = "README.md"
packages = [{ include = "neo4j_arrow", from = "src" }]

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39, py310, py311, pyarrow{10,11,12,13,14}
envlist = py{39,310,311}-pyarrow{10,11,12,13,14}, py{312}-pyarrow{14}

[testenv]
deps =
Expand Down

0 comments on commit db80237

Please sign in to comment.