infobloxopen / infoblox-client

Infoblox NIOS Python WAPI Client
Apache License 2.0
142 stars 104 forks source link

Remove Oslo dependency #381

Open jcralbino opened 4 months ago

jcralbino commented 4 months ago

Hello

This package is using as a dependency some Oslo packages that are not maintained correctly

Based in the code this can be removed as a requirement and use the well maintained package

''' try: from oslo_log import log as logging except ImportError: # pragma: no cover import logging

try: from oslo_serialization import jsonutils except ImportError: # pragma: no cover import json as jsonutils '''