Commit c261935e by William Tisäter

Add support for Python 3.3

parent ebc4cd5c
......@@ -4,7 +4,7 @@ but the code itself is ported from the [Pure PHP GeoIP API](http://pear.php.net/
It is mostly a drop-in replacement, except the `new` and `open` methods are gone.
Tested using tox with Python version 2.5, 2.6, 2.7, 3.0 and 3.1.
Tested using tox with Python version 2.5, 2.6, 2.7, 3.1, 3.2 and 3.3.
## Issues and contribution ##
......
......@@ -39,7 +39,8 @@ setup(name='pygeoip',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2'],
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3'],
packages=['pygeoip'],
license='LGPLv3+',
keywords='geoip')
[tox]
envlist = py25,py26,py27,py31,py32
envlist = py25,py26,py27,py31,py32,py33
[testenv]
deps = nose
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment