Skip to content

Commit

Permalink
Add Python 3.11 support
Browse files Browse the repository at this point in the history
Cherry pick of neo4j#861
  • Loading branch information
robsdedude committed Nov 22, 2022
1 parent c86f174 commit 9459056
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Neo4j Driver Change Log

## Version 4.4.10

- Python 3.11 support added


## Version 4.4.9

- Python 3.10 support added
Expand Down
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Neo4j versions supported:

Python versions supported:

* Python 3.11 (added in driver version 4.4.10)
* Python 3.10 (added in driver version 4.4.9)
* Python 3.9
* Python 3.8
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
entry_points = {
"console_scripts": [
Expand Down
3 changes: 2 additions & 1 deletion testkit/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ENV PYENV_ROOT /.pyenv
ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH

# Setup python version
ENV PYTHON_VERSIONS 3.6 3.7 3.8 3.9 3.10
ENV PYTHON_VERSIONS 3.6 3.7 3.8 3.9 3.10 3.11

RUN for version in $PYTHON_VERSIONS; do \
pyenv install $version:latest; \
Expand All @@ -50,6 +50,7 @@ RUN pyenv global $(pyenv versions --bare --skip-aliases)

# Install Latest pip and setuptools for each environment
# + tox and tools for starting the tests
# https://pip.pypa.io/en/stable/news/
RUN for version in $PYTHON_VERSIONS; do \
python$version -m pip install -U pip && \
python$version -m pip install -U setuptools && \
Expand Down
1 change: 1 addition & 0 deletions tox-unit.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ envlist =
py38
py39
py310
py311

[testenv]
deps =
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ envlist =
py38
py39
py310
py311

[testenv]
passenv =
Expand Down

0 comments on commit 9459056

Please sign in to comment.