Skip to content

Commit

Permalink
DEP: drop support for CPython 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Nov 5, 2024
1 parent 7e19769 commit 45dc65a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: "Set up Python"
uses: "actions/setup-python@v4"
with:
python-version: "3.9"
python-version: "3.10"

- name: "Install build tool"
run: "pip install --user build"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
python-version:
- "3.11"
- "3.10"
- "3.9"
pyqt-dependency:
- "PyQt6"
- "PySide6"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Contact:
Nathaniel J. Smith <[email protected]> and Stéfan van der Walt <[email protected]>

Dependencies:
* Python 3.9+
* Python 3.10+
* `colorspacious <https://pypi.python.org/pypi/colorspacious>`_ 1.1+
* Matplotlib 3.5+
* NumPy 1.22+
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3",
]

requires-python = "~=3.9"
requires-python = ">=3.10"
dependencies = [
"numpy ~=1.22",
"matplotlib ~=3.5",
Expand Down Expand Up @@ -51,7 +51,7 @@ package-data = {viscm = ["examples/*"]}


[tool.mypy]
python_version = "3.9"
python_version = "3.10"

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

0 comments on commit 45dc65a

Please sign in to comment.