Skip to content

Commit 926b06f

Browse files
committed
DEP: drop support for CPython 3.9
1 parent 55486c5 commit 926b06f

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: "Set up Python"
1515
uses: "actions/setup-python@v4"
1616
with:
17-
python-version: "3.9"
17+
python-version: "3.10"
1818

1919
- name: "Install build tool"
2020
run: "pip install --user build"

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
- "3.12"
1717
- "3.11"
1818
- "3.10"
19-
- "3.9"
2019
pyqt-dependency:
2120
- "PyQt"
2221
- "PySide"

README.rst

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

1616
Dependencies:
17-
* Python 3.9+
17+
* Python 3.10+
1818
* `colorspacious <https://pypi.python.org/pypi/colorspacious>`_ 1.1+
1919
* Matplotlib 3.5+
2020
* NumPy 1.22+

pyproject.toml

Lines changed: 2 additions & 2 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.9"
18+
requires-python = ">=3.10"
1919
dependencies = [
2020
"numpy >=1.22",
2121
"matplotlib >=3.5",
@@ -51,7 +51,7 @@ package-data = {viscm = ["examples/*"]}
5151

5252

5353
[tool.mypy]
54-
python_version = "3.9"
54+
python_version = "3.10"
5555

5656
# These libraries don't have type stubs. Mypy will see them as `Any` and not
5757
# throw an [import] error.

0 commit comments

Comments
 (0)