Skip to content

Commit

Permalink
Upgrade versioneer for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson committed Feb 20, 2024
1 parent abdae43 commit 9ff91f4
Show file tree
Hide file tree
Showing 3 changed files with 1,117 additions and 568 deletions.
7 changes: 2 additions & 5 deletions dask_kubernetes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from warnings import warn

from . import config
from . import _version
from .common.auth import (
AutoRefreshConfiguration,
AutoRefreshKubeConfigLoader,
Expand All @@ -14,11 +15,7 @@
from .helm import HelmCluster

__all__ = ["HelmCluster", "KubeCluster"]

from ._version import get_versions

__version__ = get_versions()["version"]
del get_versions
__version__ = _version.get_versions()["version"]


def __getattr__(name):
Expand Down
Loading

0 comments on commit 9ff91f4

Please sign in to comment.