Skip to content

Commit

Permalink
Drop Python 3.9 (#902)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson authored Aug 22, 2024
1 parent 734d001 commit 9bd8ea0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
kubernetes-version: ["1.30.2"]
include:
- python-version: '3.10'
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Dask Kubernetes
:target: https://anaconda.org/conda-forge/dask-kubernetes
:alt: Conda Forge

.. image:: https://img.shields.io/badge/python%20support-3.9%7C3.10%7C3.11%7C3.12-blue
.. image:: https://img.shields.io/badge/python%20support-3.10%7C3.11%7C3.12-blue
:target: https://kubernetes.dask.org/en/latest/installing.html#supported-versions
:alt: Python Support

Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Dask Kubernetes Operator
:target: https://anaconda.org/conda-forge/dask-kubernetes
:alt: Conda Forge

.. image:: https://img.shields.io/badge/python%20support-3.9%7C3.10%7C3.11%7C3.12-blue
.. image:: https://img.shields.io/badge/python%20support-3.10%7C3.11%7C3.12-blue
:target: https://kubernetes.dask.org/en/latest/installing.html#supported-versions
:alt: Python Support

Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dynamic = ["version"]
description = "Native Kubernetes integration for Dask"
readme = "README.rst"
license = { file = "LICENSE" }
requires-python = ">=3.9"
requires-python = ">=3.10"
maintainers = [{ name = "Jacob Tomlinson" }]
keywords = ["dask", "distributed", "kubernetes"]
dependencies = [
Expand Down Expand Up @@ -88,8 +88,7 @@ line-length = 120
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

# Assume Python 3.8
target-version = "py39"
target-version = "py310"

[tool.pytest.ini_options]
minversion = "6.0"
Expand Down

0 comments on commit 9bd8ea0

Please sign in to comment.