diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-03-28 23:42:32 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-03-28 23:43:03 +0100 |
commit | 7a7bfc750605701cb7d82656e918a5b375fbc385 (patch) | |
tree | 7f2679acddd83088ef4e09d311e38cee930db98b | |
parent | 4d6847eb93aa269130ad803fb50be99c4a7508d0 (diff) | |
download | factory-boy-7a7bfc750605701cb7d82656e918a5b375fbc385.tar factory-boy-7a7bfc750605701cb7d82656e918a5b375fbc385.tar.gz |
Advertise PyPy support.
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | README | 2 | ||||
-rwxr-xr-x | setup.py | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index e32214b..d0735d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ python: - "2.7" - "3.2" - "3.3" + - "pypy" script: - python setup.py test @@ -22,7 +22,7 @@ Links * Official repository: https://github.com/rbarrois/factory_boy * Package: https://pypi.python.org/pypi/factory_boy/ -factory_boy supports Python 2.6, 2.7, 3.2 and 3.3; and requires only the standard Python library. +factory_boy supports Python 2.6, 2.7, 3.2 and 3.3, as well as PyPy; it requires only the standard Python library. Download @@ -90,6 +90,7 @@ setup( 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development :: Testing', 'Topic :: Software Development :: Libraries :: Python Modules' ], |