Skip to content

Commit c51735e

Browse files
committed
Drop Python 3.7 support
1 parent 8aa7bb0 commit c51735e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Contact:
2424
Nathaniel J. Smith <njs@pobox.com> and Stéfan van der Walt <stefanv@berkeley.edu>
2525

2626
Dependencies:
27-
* Python 3.7+
27+
* Python 3.8+
2828
* `colorspacious <https://pypi.python.org/pypi/colorspacious>`_
2929
* Matplotlib
3030
* NumPy

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3",
1616
]
1717

18-
requires-python = "~=3.7"
18+
requires-python = "~=3.8"
1919
dependencies = [
2020
"numpy",
2121
"matplotlib",
@@ -46,10 +46,10 @@ package-data = {viscm = ["examples/*"]}
4646

4747

4848
[tool.black]
49-
target-version = ["py37", "py38", "py39", "py310", "py311"]
49+
target-version = ["py38", "py39", "py310", "py311"]
5050

5151
[tool.ruff]
52-
target-version = "py37"
52+
target-version = "py38"
5353
select = ["F", "E", "W", "C90", "I", "UP", "YTT", "B", "A", "C4", "T10", "RUF"]
5454

5555
[tool.ruff.mccabe]

0 commit comments

Comments
 (0)