Replace simplejson by built-in json
Recent python 3 versions provide the built-in json module which meets the generic requirements. Replace the 3rd party library (simplejson) by the built-in one to reduce external dependencies. Change-Id: Id5eccad660be353843f95acfa691d61888983dab
This commit is contained in:
parent
d7fd6d0eac
commit
4089a85cca
@ -11,11 +11,11 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
import contextlib
|
import contextlib
|
||||||
|
import json
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
import keystoneauth1.exceptions.http as ks_exceptions
|
import keystoneauth1.exceptions.http as ks_exceptions
|
||||||
import osc_lib.exceptions as exceptions
|
import osc_lib.exceptions as exceptions
|
||||||
import simplejson as json
|
|
||||||
|
|
||||||
from osc_placement import version
|
from osc_placement import version
|
||||||
|
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
import io
|
import io
|
||||||
|
import json
|
||||||
import logging
|
import logging
|
||||||
import random
|
import random
|
||||||
|
|
||||||
@ -20,7 +21,6 @@ from openstackclient import shell
|
|||||||
from oslotest import base
|
from oslotest import base
|
||||||
from placement.tests.functional.fixtures import capture
|
from placement.tests.functional.fixtures import capture
|
||||||
from placement.tests.functional.fixtures import placement
|
from placement.tests.functional.fixtures import placement
|
||||||
import simplejson as json
|
|
||||||
|
|
||||||
|
|
||||||
# A list of logger names that will be reset to a log level
|
# A list of logger names that will be reset to a log level
|
||||||
|
@ -10,13 +10,13 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
import json
|
||||||
from unittest import mock
|
from unittest import mock
|
||||||
|
|
||||||
import keystoneauth1.exceptions.http as ks_exceptions
|
import keystoneauth1.exceptions.http as ks_exceptions
|
||||||
import osc_lib.exceptions as exceptions
|
import osc_lib.exceptions as exceptions
|
||||||
import oslotest.base as base
|
import oslotest.base as base
|
||||||
import requests
|
import requests
|
||||||
import simplejson as json
|
|
||||||
|
|
||||||
from osc_placement import http
|
from osc_placement import http
|
||||||
from osc_placement import version
|
from osc_placement import version
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
pbr>=2.0.0 # Apache-2.0
|
pbr>=2.0.0 # Apache-2.0
|
||||||
keystoneauth1>=3.3.0 # Apache-2.0
|
keystoneauth1>=3.3.0 # Apache-2.0
|
||||||
simplejson>=3.16.0 # MIT
|
|
||||||
osc-lib>=1.2.0 # Apache-2.0
|
osc-lib>=1.2.0 # Apache-2.0
|
||||||
oslo.utils>=3.37.0 # Apache-2.0
|
oslo.utils>=3.37.0 # Apache-2.0
|
||||||
|
Loading…
Reference in New Issue
Block a user