Skip to content

Commit

Permalink
Stop locking minimum dependency version (fix #232)
Browse files Browse the repository at this point in the history
  • Loading branch information
roll committed Apr 11, 2019
1 parent f043a0c commit 411675d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ def read(*paths):
PACKAGE = 'datapackage'
NAME = PACKAGE.replace('_', '-')
INSTALL_REQUIRES = [
'six>=1.10,<2.0',
'click>=6.7,<8.0',
'requests>=2.8,<3.0',
'cchardet>=1.0,<3.0',
'jsonschema>=2.5,<3.0',
'unicodecsv>=0.14,<2.0',
'jsonpointer>=1.10,<2.0',
'tableschema>=1.1.0,<2.0',
'tabulator>=1.3,<2.0',
'six>=1.10',
'click>=6.7',
'requests>=2.8',
'cchardet>=1.0',
'jsonschema>=2.5',
'unicodecsv>=0.14',
'jsonpointer>=1.10',
'tableschema>=1.1.0',
'tabulator>=1.3',
]
TESTS_REQUIRE = [
'pylama',
Expand Down

0 comments on commit 411675d

Please sign in to comment.