Skip to content

Commit 6c785c7

Browse files
authored
The 4.4 driver only supports Python 3.6+ (#626)
This change could be considered a breaking change. But in fact it's a fix: it'll make an attempt to install neo4j with a wrong Python version faster. The supported Python versions were clearly stated in the documentation from the start. Furthermore, since some compatibility layers for Python 3.5 have been removed in this driver version, we better fail fast to indicate the misconfiguration.
1 parent ec32f96 commit 6c785c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"classifiers": classifiers,
6363
"packages": packages,
6464
"entry_points": entry_points,
65-
"python_requires": ">=3.5",
65+
"python_requires": ">=3.6",
6666
}
6767

6868
setup(**setup_args)

0 commit comments

Comments
 (0)