Skip to content

Commit

Permalink
dropped support for python3.6; updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
filip-komarzyniec committed Jun 3, 2024
1 parent 4a313e6 commit 8352164
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Compute "natural breaks" (*Fisher-Jenks algorithm*) on list / tuple / array / nu

The algorithm implemented by this library is also sometimes referred to as *Fisher-Jenks algorithm*, *Jenks Optimisation Method* or *Fisher exact optimization method*. This is a deterministic method to calculate the optimal class boundaries.

Intended compatibility: CPython 3.6+
Intended compatibility: CPython 3.7+

Wheels are provided via PyPI for Windows / MacOS / Linux users - Also available on conda-forge channel for Anaconda users.

Expand Down Expand Up @@ -86,7 +86,7 @@ pip install jenkspy
```shell
git clone http://github.com/mthh/jenkspy
cd jenkspy/
python setup.py install
pip install .
```

- **For anaconda users**
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dynamic = ["version"]
dependencies = [
"numpy"
]
requires-python = ">= 3.6"
requires-python = ">= 3.7"
authors = [
{name = "Matthieu Viry", email = "[email protected]"},
]
Expand All @@ -24,7 +24,6 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit 8352164

Please sign in to comment.