diff --git a/affinity.py b/affinity.py index 2baf31a..64e58dd 100644 --- a/affinity.py +++ b/affinity.py @@ -1,6 +1,6 @@ __doc__ = """ Module for creating well-documented datasets, with types and annotations. -Version 0.7.0 +Version 0.8.1 """ from dataclasses import dataclass, field @@ -17,7 +17,7 @@ def try_import(module: str) -> object | None: try: return import_module(module) except ImportError: - print(f"{module} not found in the current environment") + # print(f"{module} not found in the current environment") return diff --git a/pyproject.toml b/pyproject.toml index 2b55917..4a32748 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "affinity" -version = "0.8.0" +version = "0.8.1" description = "Module for creating well-documented datasets, with types and annotations." authors = [ { name = "Alex Kislukhin" }