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
2 changes: 1 addition & 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 = "compendium"
version = "0.1.3.post9"
version = "0.1.4"
description = "Simple layered configuraion tool"
authors = [{name="Jesse P. Johnson", email="jpj6652@gmail.com"}]
maintainers = [{name="Jesse P. Johnson", email="jpj6652@gmail.com"}]
Expand Down
2 changes: 1 addition & 1 deletion src/compendium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
__author_email__ = 'jpj6652@gmail.com'
__title__ = 'compendium'
__description__ = 'Inspection based parser built on argparse.'
__version__ = '0.1.3'
__version__ = '0.1.4'
__license__ = 'Apache-2.0'
__copyright__ = 'Copyright 2020 Jesse Johnson.'
__all__ = [
Expand Down
5 changes: 3 additions & 2 deletions src/compendium/loader.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# copyright: (c) 2020 by Jesse Johnson.
# license: Apache 2.0, see LICENSE for more details.
# pylint: disable=unused-import
# noqa: F401
"""Control configuration files."""

# from weakref import ref
import importlib
import logging
import os
from importlib.util import find_spec
from typing import Any, Dict, Optional, Type

from compendium import exceptions
Expand All @@ -17,7 +18,7 @@
from compendium.filetypes.yaml import YamlConfig
from compendium.settings import Settings

if importlib.util.find_spec('xmltodict'): # type: ignore
if find_spec('xmltodict'):
from compendium.filetypes.xml import XmlConfig

log = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

def test_version():
"""Test project version is managed."""
assert __version__ == '0.1.3'
assert __version__ == '0.1.4'
Loading