Ensure Python 3.2 support with tox
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -6,6 +6,7 @@
|
|||||||
/.venv*
|
/.venv*
|
||||||
|
|
||||||
/*.egg-info
|
/*.egg-info
|
||||||
|
/.eggs
|
||||||
/build
|
/build
|
||||||
/dist
|
/dist
|
||||||
/MANIFEST
|
/MANIFEST
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
language: python
|
language: python
|
||||||
python: "3.5"
|
python: "3.5"
|
||||||
install: pip install virtualenv
|
install: pip install "virtualenv<14.0.0"
|
||||||
script: python setup.py test
|
script: python setup.py test
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -58,7 +58,7 @@ setup(
|
|||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
],
|
],
|
||||||
tests_require=['tox'],
|
tests_require=['tox', 'virtualenv<14.0.0'],
|
||||||
cmdclass={
|
cmdclass={
|
||||||
'test': Tox,
|
'test': Tox,
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user