Skip to content

Commit d8308ea

Browse files
authored
Merge pull request #88 from adamnsch/3.6-support
Bring back Python 3.6 support
2 parents faeb7a6 + 77c8d41 commit d8308ea

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Remember that many community members have become regular contributors and some a
5555

5656
Setting up the development environment:
5757

58-
* Install Python 3.7+
58+
* Install Python 3.6+
5959
* [Install pip](https://pip.pypa.io/en/stable/installation/)
6060
* Install the project's Python dependencies:
6161
```bash

changelog/0.1.1.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* Removed support for GDS 1.x `graph.create` syntax.
88
* Replace NC and LP training pipelines method `configureParams` by new methods `addLogisticRegression` and `addRandomForest`.
99
* Removed support for GDS 1.x `gds.alpha.similarity.*` functions and procedures.
10-
* Removed support for Python 3.6.
1110
* Replace all dict return types with pandas Series.
1211
* Replace all list[dict,...] return types with pandas DataFrame.
1312

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
packages=setuptools.find_packages(),
4242
package_data={"graphdatascience": ["py.typed"]},
4343
project_urls=project_urls,
44-
python_requires=">=3.7",
44+
python_requires=">=3.6",
4545
install_requires=reqs,
4646
zip_safe=False,
4747
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37, py38, py39, py310
2+
envlist = py36, py37, py38, py39, py310
33

44
[testenv]
55
deps = pytest

0 commit comments

Comments
 (0)