diff --git a/pre_commit/commands/autoupdate.py b/pre_commit/commands/autoupdate.py index f9cce05c..ffea0a2f 100644 --- a/pre_commit/commands/autoupdate.py +++ b/pre_commit/commands/autoupdate.py @@ -3,8 +3,8 @@ from __future__ import unicode_literals import sys -from asottile.yaml import ordered_dump -from asottile.yaml import ordered_load +from aspy.yaml import ordered_dump +from aspy.yaml import ordered_load from plumbum import local import pre_commit.constants as C diff --git a/setup.py b/setup.py index 33c321b0..daf1f183 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( }, install_requires=[ 'argparse', - 'asottile.yaml', + 'aspy.yaml', 'cached-property', 'jsonschema', 'nodeenv>=0.9.4', diff --git a/testing/fixtures.py b/testing/fixtures.py index b3af9910..f9e94d92 100644 --- a/testing/fixtures.py +++ b/testing/fixtures.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals import io import os.path -from asottile.yaml import ordered_dump +from aspy.yaml import ordered_dump from plumbum import local import pre_commit.constants as C diff --git a/tests/clientlib/validate_base_test.py b/tests/clientlib/validate_base_test.py index e10048d9..5c44ab51 100644 --- a/tests/clientlib/validate_base_test.py +++ b/tests/clientlib/validate_base_test.py @@ -1,7 +1,7 @@ from __future__ import unicode_literals import pytest -from asottile.yaml import ordered_load +from aspy.yaml import ordered_load from pre_commit.clientlib.validate_base import get_validator from pre_commit.ordereddict import OrderedDict