diff options
| author | Marc Abramowitz <msabramo@gmail.com> | 2014-06-16 11:44:24 -0700 |
|---|---|---|
| committer | Marc Abramowitz <msabramo@gmail.com> | 2014-06-16 11:44:24 -0700 |
| commit | 3c572d0bba54d63e1ffab7d265eb693df35fec30 (patch) | |
| tree | ae6c27bd5dc78ae9212d3e68311d9daa0ce06731 | |
| parent | afa236807c3002ae92ca75b541767bfc7e877ff7 (diff) | |
| parent | fbbb3090ea1ca4ac3042acea7633241b0388f0b3 (diff) | |
| download | smmap-3c572d0bba54d63e1ffab7d265eb693df35fec30.tar.gz | |
Merge pull request #17 from Byron/support_python_3
Support python 3
| -rw-r--r-- | .travis.yml | 5 | ||||
| -rw-r--r-- | setup.py | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index d02eb6f..47cb411 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,8 +10,3 @@ script: - nosetests --with-coverage after_success: - coveralls -matrix: - allow_failures: - - python: 3.3 - - python: 3.4 - fast_finish: true @@ -44,6 +44,12 @@ setup( "Operating System :: Microsoft :: Windows", "Operating System :: MacOS :: MacOS X", "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", ], long_description=long_description, ) |
