Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/helmcluster.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.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
kubernetes-version: ["1.27.0"]
include:
- python-version: "3.10"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kubecluster.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.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
kubernetes-version: ["1.27.0"]
include:
- python-version: "3.10"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
kubernetes-version: ["1.27.0"]
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 @@ -21,7 +21,7 @@ Dask Kubernetes
:target: https://anaconda.org/conda-forge/dask-kubernetes
:alt: Conda Forge

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

Expand Down
3 changes: 2 additions & 1 deletion ci/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM ghcr.io/dask/dask:latest
ARG BASE_IMAGE=ghcr.io/dask/dask:latest
FROM ${BASE_IMAGE}

# Install latest dev builds of Dask and Distributed
RUN pip install git+https://github.com/dask/distributed@main
Expand Down
13 changes: 12 additions & 1 deletion dask_kubernetes/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import os
import subprocess
import tempfile
import sys

from kopf.testing import KopfRunner
from pytest_kind.cluster import KindCluster
Expand All @@ -25,7 +26,17 @@ def kopf_runner(k8s_cluster):
@pytest.fixture(scope="session")
def docker_image():
image_name = "dask-kubernetes:dev"
subprocess.run(["docker", "build", "-t", image_name, "./ci/"], check=True)
subprocess.run(
[
"docker",
"build",
"-t",
image_name,
f"--build-arg='BASE_IMAGE=ghcr.io/dask/dask:latest-py{sys.version_info.major}.{sys.version_info.minor}'",
"./ci/",
],
check=True,
)
return image_name


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

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

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ dask>=2022.08.1
distributed>=2022.08.1
kubernetes>=12.0.1
kubernetes-asyncio>=12.0.1
kopf>=1.35.3
kopf>=1.36.0
pykube-ng>=22.9.0
rich>=12.5.1