From cb77540272befdb2d06377a86a70310090049692 Mon Sep 17 00:00:00 2001 From: Sofie Van Landeghem Date: Fri, 8 Sep 2023 17:36:02 +0200 Subject: [PATCH] Add frozen structures to init (#43) * add frozen structures to __all__ * bump version to 0.1.3 --- confection/__init__.py | 8 +++++++- setup.cfg | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/confection/__init__.py b/confection/__init__.py index e9dfca6..4116d97 100644 --- a/confection/__init__.py +++ b/confection/__init__.py @@ -1068,4 +1068,10 @@ def make_promise_schema( return create_model("ArgModel", **sig_args) -__all__ = ["Config", "registry", "ConfigValidationError"] +__all__ = [ + "Config", + "registry", + "ConfigValidationError", + "SimpleFrozenDict", + "SimpleFrozenList", +] diff --git a/setup.cfg b/setup.cfg index 88d4594..abdee9b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.1.2 +version = 0.1.3 description = The sweetest config system for Python url = https://github.com/explosion/confection author = Explosion