-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Cosmethic changes * Filter by teamid * Update copyright notice * Refactoring classes and tests * Team subcommand * Fix typo in tests * Refactoring PDH class * Cosmethic * Move svc_list to core * Update readme * Bump deps and version to 0.7.0
- Loading branch information
Showing
20 changed files
with
735 additions
and
632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ ignore = [ | |
|
||
[tool.poetry] | ||
name = "pdh" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
description = "Pagerduty CLI for Humans" | ||
authors = ["Manuel Bovo <[email protected]>"] | ||
license = "GPL-3.0-or-later" | ||
|
@@ -33,11 +33,11 @@ readme = "README.md" | |
python = "^3.11" | ||
click = "^8.1.7" | ||
colorama = "^0.4.6" | ||
pdpyras = "^5.2.0" | ||
rich = "^13.8.1" | ||
pdpyras = "^5.4.0" | ||
rich = "^13.9.4" | ||
PyYAML = "^6.0.2" | ||
humanize = "^4.10.0" | ||
jsonpath-ng = "^1.6.1" | ||
jsonpath-ng = "^1.7.0" | ||
deprecation = "^2.1.0" | ||
setuptools = "^72.1.0" # needed for poetry2nix and nix build since the provided version by nixpkgs unstable is still 72.x | ||
dikdik = "^0.1.6" | ||
|
@@ -47,11 +47,11 @@ pdh = "pdh.main:main" | |
|
||
[tool.poetry.group.dev.dependencies] | ||
pylint = "^3.3.1" | ||
black = "^24.8.0" | ||
black = "^24.10.0" | ||
pytest = "^8.3.3" | ||
pytest-cov = "^4.0.0" | ||
pytest-mock = "^3.14.0" | ||
ruff = "^0.6.8" | ||
ruff = "^0.8.4" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.