Remove argparse requirement as code not 2.6 compatible

This commit is contained in:
Oliver Bristow 2018-08-04 18:39:23 +01:00 committed by Oliver Bristow
commit b0d41ab172
No known key found for this signature in database
GPG key ID: FF13F04BD2C87186
2 changed files with 1 additions and 2 deletions

View file

@ -1,6 +1,5 @@
language: python language: python
python: python:
- "2.6"
- "2.7" - "2.7"
- "3.2" - "3.2"
- "3.3" - "3.3"

View file

@ -14,7 +14,7 @@ if sys.argv[-1] == 'publish':
packages = ['colout'] packages = ['colout']
requires = ['argparse; python_version < "2.7"', 'pygments', 'babel'] requires = ['pygments', 'babel']
setup_requires = ['setuptools_scm'] setup_requires = ['setuptools_scm']