From da8cb2150be70c85c8ce61bd64fe1fa76b2f72cf Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Fri, 5 Jul 2024 09:20:35 +0800 Subject: [PATCH] feat: expose more members Signed-off-by: Frost Ming --- src/dep_logic/tags/__init__.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/dep_logic/tags/__init__.py b/src/dep_logic/tags/__init__.py index 6d7a81f..16021ee 100644 --- a/src/dep_logic/tags/__init__.py +++ b/src/dep_logic/tags/__init__.py @@ -1,5 +1,12 @@ from .platform import Platform, PlatformError -from .tags import EnvSpec, InvalidWheelFilename, TagsError, UnsupportedImplementation +from .tags import ( + EnvCompatibility, + EnvSpec, + Implementation, + InvalidWheelFilename, + TagsError, + UnsupportedImplementation, +) __all__ = [ "Platform", @@ -8,4 +15,6 @@ "UnsupportedImplementation", "InvalidWheelFilename", "EnvSpec", + "Implementation", + "EnvCompatibility", ]