summaryrefslogtreecommitdiff
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* Update test envs and trove classifiersJames Socol2014-05-091-1/+1
|
* Drop Python 2.5 from test environments.James Socol2013-11-251-1/+1
|
* Update requirements and test versions.James Socol2013-03-061-3/+3
| | | | | | - Update nose and mock. - Add flake8 to dev requirements. - Add Py33 to tox and travis.
* Pin requirements versions.James Socol2012-07-231-3/+3
|
* Python 3.2 and 2.5 support; tox test running.Mikhail Korobov2012-06-261-0/+11
socket.send expects bytes in Python 3 (while python 2 doesn't care) and it looks like statsd server implementations doesn't support non-ascii data so the data is forced to ascii. I don't care much about python 2.5 but its support was only single __future__ import away so it was added. Travis CI is great but tox is better for TDD because tests can be run locally without commiting so tox.ini was added. Version management was simplified (more KISS, less DRY) because importing packages in setup.py causes headaches.