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

Commit

Permalink
Ensure minimum version of isort, fixes #10
Browse files Browse the repository at this point in the history
  • Loading branch information
dinoshauer committed Sep 1, 2015
1 parent b7f5d46 commit 934072f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -2,7 +2,7 @@
from setuptools import find_packages
from setuptools import setup

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

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

author='Kasper Jacobsen',
author_email='k@mackwerk.dk',
Expand Down

0 comments on commit 934072f

Please sign in to comment.