Skip to content

Commit

Permalink
remove pendulum, use stdlib logger instead of loguru
Browse files Browse the repository at this point in the history
  • Loading branch information
NodeJSmith committed Oct 14, 2024
1 parent d1a0bf9 commit a7acb81
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 158 deletions.
138 changes: 1 addition & 137 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ python = "^3.10"
aiohttp = "3.10.*"
humanize = "^4.9.0"
inflection = "0.5.*"
loguru = "0.7.2"
pendulum = "^3.0.0"
pint = "0.24.*"
pycognito = "2024.5.1"
pydantic = "2.7.3"
Expand All @@ -43,7 +41,6 @@ pytest = "8.2.2"
pytest-asyncio = "0.23.7"
pytest-cov = "5.0.0"
pytest-loguru = "0.4.0"
ruff = "0.4.9"
tox = "4.15.1"
twine = "5.1.1"

Expand Down
8 changes: 0 additions & 8 deletions src/otf_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
import os
import sys

from loguru import logger

from .api import Otf
from .auth import OtfUser

__version__ = "0.6.4"


__all__ = ["Otf", "OtfUser"]

logger.remove()
logger.add(sink=sys.stdout, level=os.getenv("OTF_LOG_LEVEL", "INFO"))
Loading

0 comments on commit a7acb81

Please sign in to comment.