File tree 8 files changed +15
-2
lines changed
8 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Neo4j Driver Change Log
2
2
3
+ ## Version 4.4.10
4
+
5
+ - Python 3.11 support added
6
+
7
+
3
8
## Version 4.4.9
4
9
5
10
- Python 3.10 support added
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Neo4j versions supported:
12
12
13
13
Python versions supported:
14
14
15
+ * Python 3.11 (added in driver version 4.4.10)
15
16
* Python 3.10 (added in driver version 4.4.9)
16
17
* Python 3.9
17
18
* Python 3.8
Original file line number Diff line number Diff line change
1
+ [pytest]
2
+ mock_use_standalone_module = true
Original file line number Diff line number Diff line change 38
38
"Programming Language :: Python :: 3.8" ,
39
39
"Programming Language :: Python :: 3.9" ,
40
40
"Programming Language :: Python :: 3.10" ,
41
+ "Programming Language :: Python :: 3.11" ,
41
42
]
42
43
entry_points = {
43
44
"console_scripts" : [
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ ENV PYENV_ROOT /.pyenv
40
40
ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH
41
41
42
42
# Setup python version
43
- ENV PYTHON_VERSIONS 3.6 3.7 3.8 3.9 3.10
43
+ ENV PYTHON_VERSIONS 3.6 3.7 3.8 3.9 3.10 3.11
44
44
45
45
RUN for version in $PYTHON_VERSIONS; do \
46
46
pyenv install $version:latest; \
@@ -50,6 +50,7 @@ RUN pyenv global $(pyenv versions --bare --skip-aliases)
50
50
51
51
# Install Latest pip and setuptools for each environment
52
52
# + tox and tools for starting the tests
53
+ # https://pip.pypa.io/en/stable/news/
53
54
RUN for version in $PYTHON_VERSIONS; do \
54
55
python$version -m pip install -U pip && \
55
56
python$version -m pip install -U setuptools && \
Original file line number Diff line number Diff line change 3
3
pytest
4
4
pytest-benchmark
5
5
pytest-cov
6
- pytest-mock ~= 3.6.1
6
+ pytest-mock ~= 3.6
7
+ mock ~= 4.0
7
8
teamcity-messages
8
9
pandas >= 1.0.0
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ envlist =
5
5
py38
6
6
py39
7
7
py310
8
+ py311
8
9
9
10
[testenv]
10
11
deps =
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ envlist =
5
5
py38
6
6
py39
7
7
py310
8
+ py311
8
9
9
10
[testenv]
10
11
passenv =
You can’t perform that action at this time.
0 commit comments