Skip to content

Commit 45dc65a

Browse files
committed
DEP: drop support for CPython 3.9
1 parent 7e19769 commit 45dc65a

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
@@ -13,7 +13,6 @@ jobs:
1313
python-version:
1414
- "3.11"
1515
- "3.10"
16-
- "3.9"
1716
pyqt-dependency:
1817
- "PyQt6"
1918
- "PySide6"

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 <[email protected]> and Stéfan van der Walt <[email protected]>
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)