Skip to content

Commit

Permalink
make django stable
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkandersson committed Sep 27, 2024
1 parent 2fe5362 commit fddc3be
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions charmcraft/extensions/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,12 @@ class DjangoFramework(_AppBase):
},
}

@staticmethod
@override
def is_experimental(base: tuple[str, ...] | None) -> bool: # noqa: ARG004
"""Check if the extension is in an experimental state."""
return False


class GoFramework(_AppBase):
"""Extension for 12-factor Go applications."""
Expand Down
2 changes: 1 addition & 1 deletion tests/extensions/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def flask_input_yaml_fixture():
},
"extensions": ["django-framework"],
},
True,
False,
{
"actions": DjangoFramework.actions,
"assumes": ["k8s-api"],
Expand Down

0 comments on commit fddc3be

Please sign in to comment.