Skip to content
This repository was archived by the owner on Nov 3, 2020. It is now read-only.

Commit 934072f

Browse files
committed
Ensure minimum version of isort, fixes #10
1 parent b7f5d46 commit 934072f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import find_packages
33
from setuptools import setup
44

5-
install_requires = ['isort']
5+
install_requires = ['isort>=4.1.1,<5']
66
if sys.version_info < (2, 7):
77
install_requires.append('argparse')
88

@@ -11,7 +11,7 @@
1111
name='pre_commit_python_sort',
1212
description='A pre-commit hook to sort your python imports.',
1313
url='https://github.com/FalconSocial/pre-commit-python-sorter',
14-
version='1.0.1',
14+
version='1.0.2',
1515

1616
author='Kasper Jacobsen',
1717
author_email='[email protected]',

0 commit comments

Comments
 (0)