Skip to content

Commit 6094d2d

Browse files
committed
Compatibility table
1 parent 61b97fb commit 6094d2d

11 files changed

+82
-32
lines changed

.github/workflows/test-neo4j-3.5-ubuntu-18.04.yml renamed to .github/workflows/test-neo35-py27-py34.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test with Neo4j 3.5 on py27/py34
1+
name: test-neo35-py27-py34
22

33
on:
44
push:

.github/workflows/test-neo4j-3.5-ubuntu-20.04.yml renamed to .github/workflows/test-neo35-py35+.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test with Neo4j 3.5 on py35/py36/py37/py38/py39
1+
name: test-neo35-py35+
22

33
on:
44
push:

.github/workflows/test-neo4j-4.0-ubuntu-18.04.yml renamed to .github/workflows/test-neo40-py27-py34.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test with Neo4j 4.0 on py27/py34
1+
name: test-neo40-py27-py34
22

33
on:
44
push:

.github/workflows/test-neo4j-4.0-ubuntu-20.04.yml renamed to .github/workflows/test-neo40-py35+.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test with Neo4j 4.0 on py35/py36/py37/py38/py39
1+
name: test-neo40-py35+
22

33
on:
44
push:

.github/workflows/test-neo4j-4.1-ubuntu-18.04.yml renamed to .github/workflows/test-neo41-py27-py34.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test with Neo4j 4.1 on py27/py34
1+
name: test-neo41-py27-py34
22

33
on:
44
push:

.github/workflows/test-neo4j-4.1-ubuntu-20.04.yml renamed to .github/workflows/test-neo41-py35+.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test with Neo4j 4.1 on py35/py36/py37/py38/py39
1+
name: test-neo41-py35+
22

33
on:
44
push:

.github/workflows/test-neo4j-4.2-ubuntu-18.04.yml renamed to .github/workflows/test-neo42-py27-py34.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test with Neo4j 4.2 on py27/py34
1+
name: test-neo42-py27-py34
22

33
on:
44
push:

.github/workflows/test-neo4j-4.2-ubuntu-20.04.yml renamed to .github/workflows/test-neo42-py35+.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test with Neo4j 4.2 on py35/py36/py37/py38/py39
1+
name: test-neo42-py35+
22

33
on:
44
push:

.github/workflows/test-neo4j-4.3-ubuntu-18.04.yml renamed to .github/workflows/test-neo43-py27-py34.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test with Neo4j 4.3 on py27/py34
1+
name: test-neo43-py27-py34
22

33
on:
44
push:

.github/workflows/test-neo4j-4.3-ubuntu-20.04.yml renamed to .github/workflows/test-neo43-py35+.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test with Neo4j 3.4 on py35/py36/py37/py38/py39
1+
name: test-neo43-py35+
22

33
on:
44
push:

README.rst

Lines changed: 72 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -71,36 +71,86 @@ To install the latest stable code from the GitHub master branch, use:
7171
$ pip install git+https://github.com/technige/py2neo.git@master#egg=py2neo
7272
7373
74-
Requirements
75-
------------
76-
.. image:: https://img.shields.io/pypi/pyversions/py2neo.svg
77-
:target: https://www.python.org/
78-
:alt: Python versions
79-
80-
.. image:: https://img.shields.io/badge/neo4j-3.4%20%7C%203.5%20%7C%204.0%20%7C%204.1%20%7C%204.2%20%7C%204.3-blue.svg
81-
:target: https://neo4j.com/
82-
:alt: Neo4j versions
74+
Compatibility
75+
-------------
8376

8477
The following versions of Python and Neo4j (all editions) are supported:
8578

86-
- Python 2.7 / 3.4 / 3.5 / 3.6 / 3.7 / 3.8 / 3.9
87-
- Neo4j 3.4 / 3.5 / 4.0 / 4.1 / 4.2 / 4.3 (the latest point release of each version is recommended)
79+
.. list-table::
80+
:header-rows: 1
81+
82+
* - Neo4j
83+
- Python 3.5+
84+
- Python 2.7 and 3.4
85+
* - 4.3
86+
- |test-neo43-py35+|
87+
- |test-neo43-py27-py34|
88+
* - 4.2
89+
- |test-neo42-py35+|
90+
- |test-neo42-py27-py34|
91+
* - 4.1
92+
- |test-neo41-py35+|
93+
- |test-neo41-py27-py34|
94+
* - 4.0
95+
- |test-neo40-py35+|
96+
- |test-neo40-py27-py34|
97+
* - 3.5
98+
- |test-neo35-py35+|
99+
- |test-neo35-py27-py34|
100+
* - 3.4
101+
- |test-neo34-py35+|
102+
- |test-neo34-py27-py34|
103+
104+
Note that Py2neo is developed and tested under **Linux** using standard CPython distributions.
105+
While other operating systems and Python distributions may work, support for these is not available.
88106

89-
- Neo4j 3.4 |neo34_py27py34| |neo34_py35py36py37py38py39|
107+
.. |test-neo43-py27-py34| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo43-py27-py34
108+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo43-py27-py34"
109+
:alt: GitHub workflow status for tests against Neo4j 4.3 using py27/py34
90110

91-
Py2neo provides support for the multi-database functionality added in Neo4j 4.0.
92-
More about this can be found in the documentation for the ``Graph`` class.
111+
.. |test-neo43-py35+| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo43-py35+
112+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo43-py35+"
113+
:alt: GitHub workflow status for tests against Neo4j 4.3 using py35+
93114

94-
Note also that Py2neo is developed and tested under **Linux** using standard CPython distributions.
95-
While other operating systems and Python distributions may work, support for these is not available.
115+
.. |test-neo42-py27-py34| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo42-py27-py34
116+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo42-py27-py34"
117+
:alt: GitHub workflow status for tests against Neo4j 4.2 using py27/py34
118+
119+
.. |test-neo42-py35+| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo42-py35+
120+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo42-py35+"
121+
:alt: GitHub workflow status for tests against Neo4j 4.2 using py35+
122+
123+
.. |test-neo41-py27-py34| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo41-py27-py34
124+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo41-py27-py34"
125+
:alt: GitHub workflow status for tests against Neo4j 4.1 using py27/py34
126+
127+
.. |test-neo41-py35+| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo41-py35+
128+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo41-py35+"
129+
:alt: GitHub workflow status for tests against Neo4j 4.1 using py35+
130+
131+
.. |test-neo40-py27-py34| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo40-py27-py34
132+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo40-py27-py34"
133+
:alt: GitHub workflow status for tests against Neo4j 4.0 using py27/py34
134+
135+
.. |test-neo40-py35+| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo40-py35+
136+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo40-py35+"
137+
:alt: GitHub workflow status for tests against Neo4j 4.0 using py35+
138+
139+
.. |test-neo35-py27-py34| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo35-py27-py34
140+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo35-py27-py34"
141+
:alt: GitHub workflow status for tests against Neo4j 3.5 using py27/py34
142+
143+
.. |test-neo35-py35+| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo35-py35+
144+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo35-py35+"
145+
:alt: GitHub workflow status for tests against Neo4j 3.5 using py35+
96146

97-
.. |neo34_py27py34| image:: https://img.shields.io/github/workflow/status/technige/py2neo/Test%20with%20Neo4j%203.4%20on%20py27%2Fpy34
98-
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"Test%20with%20Neo4j%203.4%20on%20py27%2Fpy34"
99-
:alt: GitHub Workflow Status
147+
.. |test-neo34-py27-py34| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo34-py27-py34
148+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo34-py27-py34"
149+
:alt: GitHub workflow status for tests against Neo4j 3.4 using py27/py34
100150

101-
.. |neo34_py35py36py37py38py39| image:: https://img.shields.io/github/workflow/status/technige/py2neo/Test%20with%20Neo4j%203.4%20on%20py35/py36/py37/py38/py39
102-
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"Test%20with%20Neo4j%203.4%20on%20py35/py36/py37/py38/py39"
103-
:alt: GitHub Workflow Status
151+
.. |test-neo34-py35+| image:: https://img.shields.io/github/workflow/status/technige/py2neo/test-neo34-py35+
152+
:target: https://github.com/technige/py2neo/actions?query=workflow%3A"test-neo34-py35+"
153+
:alt: GitHub workflow status for tests against Neo4j 3.4 using py35+
104154

105155

106156
More

0 commit comments

Comments
 (0)