Skip to content
Open
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
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "cosl"
version = "1.10.3"
version = "1.11.3"
authors = [
{ name = "sed-i", email = "82407168+sed-i@users.noreply.github.com" },
]
Expand Down Expand Up @@ -123,3 +123,8 @@ ignore-words-list = "assertIn"
[tool.hatch.metadata]
# allow git+ dependencies in pyproject
allow-direct-references = true

[dependency-groups]
test = [
"pytest>=8.3.5",
]
3 changes: 3 additions & 0 deletions src/cosl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from .juju_topology import JujuTopology
from .mandatory_relation_pairs import MandatoryRelationPairs
from .rules import AlertRules, RecordingRules
from .rules_customization import AlertRulesCustomization, AlertRulesCustomizationError
from .types import type_convert_stored

__all__ = [
Expand All @@ -18,6 +19,8 @@
"DashboardPath40UID",
"AlertRules",
"RecordingRules",
"AlertRulesCustomization",
"AlertRulesCustomizationError",
Comment on lines +22 to +23

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Look at canonical/prometheus-k8s-operator#857 to see how these are intended to be used.

"MandatoryRelationPairs",
"type_convert_stored",
]
Loading
Loading