Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update CODEOWNERS and replaced pkg_resources with packaging #521

Merged
merged 2 commits into from
Jul 24, 2024
Merged
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/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
===================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Loading