From 77c8d41b781995ab7472c51401688cdbd6004a29 Mon Sep 17 00:00:00 2001 From: Adam Schill Collberg Date: Wed, 23 Mar 2022 10:02:07 +0100 Subject: [PATCH] Bring back Python 3.6 support Since the neo4j driver supports 3.6 for versions < 5.0. --- CONTRIBUTING.md | 2 +- changelog/0.1.1.md | 1 - setup.py | 2 +- tox.ini | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 44599e306..da8d834e6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -55,7 +55,7 @@ Remember that many community members have become regular contributors and some a Setting up the development environment: - * Install Python 3.7+ + * Install Python 3.6+ * [Install pip](https://pip.pypa.io/en/stable/installation/) * Install the project's Python dependencies: ```bash diff --git a/changelog/0.1.1.md b/changelog/0.1.1.md index 63f5242a3..ce6c9a8cd 100644 --- a/changelog/0.1.1.md +++ b/changelog/0.1.1.md @@ -7,7 +7,6 @@ * Removed support for GDS 1.x `graph.create` syntax. * Replace NC and LP training pipelines method `configureParams` by new methods `addLogisticRegression` and `addRandomForest`. * Removed support for GDS 1.x `gds.alpha.similarity.*` functions and procedures. -* Removed support for Python 3.6. * Replace all dict return types with pandas Series. * Replace all list[dict,...] return types with pandas DataFrame. diff --git a/setup.py b/setup.py index 52775bffe..e68019bd8 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ packages=setuptools.find_packages(), package_data={"graphdatascience": ["py.typed"]}, project_urls=project_urls, - python_requires=">=3.7", + python_requires=">=3.6", install_requires=reqs, zip_safe=False, ) diff --git a/tox.ini b/tox.ini index f5f7114e1..571783c11 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37, py38, py39, py310 +envlist = py36, py37, py38, py39, py310 [testenv] deps = pytest