Skip to content

Commit

Permalink
Merge pull request #88 from adamnsch/3.6-support
Browse files Browse the repository at this point in the history
Bring back Python 3.6 support
  • Loading branch information
adamnsch authored Mar 23, 2022
2 parents faeb7a6 + 77c8d41 commit d8308ea
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion changelog/0.1.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39, py310
envlist = py36, py37, py38, py39, py310

[testenv]
deps = pytest
Expand Down

0 comments on commit d8308ea

Please sign in to comment.