diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 5eb7a6fb..fa357e3c 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -4,4 +4,4 @@ # the repo. Unless a later match takes precedence, # The users listed below are global owners and will be # requested for review when someone opens a pull request. -* @plaharanne @tomach @WalBeh @Taliik @juanpardo +* @plaharanne @tomach @WalBeh @Taliik @juanpardo @widmogrod @goat-ssh diff --git a/CHANGES.rst b/CHANGES.rst index 70d4b638..46359eae 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,8 @@ Unreleased - Added new resource ``organizations customer`` and subcommands that allow users to manage organization's billing info. +- Replaced ``pkg_resources.extern`` with ``packaging`` + 1.11.1 - 2024/04/11 =================== diff --git a/setup.py b/setup.py index 0df0f53f..bd7d6cb7 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ # type: ignore -from pkg_resources.extern.packaging.version import Version +from packaging.version import Version from setuptools import find_packages, setup __version__ = Version("1.11.1")