Build with Python 3.3 and Python support info
This commit is contained in:
parent
af52a0b58d
commit
a71e4cbc9b
|
@ -3,5 +3,6 @@ python:
|
||||||
- "2.6"
|
- "2.6"
|
||||||
- "2.7"
|
- "2.7"
|
||||||
- "3.2"
|
- "3.2"
|
||||||
|
- "3.3"
|
||||||
- "pypy"
|
- "pypy"
|
||||||
script: py.test -vv
|
script: py.test -vv
|
||||||
|
|
|
@ -20,6 +20,14 @@ use of ``Module`` s.
|
||||||
While being inspired by Guice, it does not slavishly replicate its API.
|
While being inspired by Guice, it does not slavishly replicate its API.
|
||||||
Providing a Pythonic API trumps faithfulness.
|
Providing a Pythonic API trumps faithfulness.
|
||||||
|
|
||||||
|
Supported Python versions
|
||||||
|
=========================
|
||||||
|
|
||||||
|
Injector work with the following Python interpreters:
|
||||||
|
|
||||||
|
* CPython 2.6, 2.7, 3.2, 3.3
|
||||||
|
* PyPy 1.9
|
||||||
|
|
||||||
A Full Example
|
A Full Example
|
||||||
==============
|
==============
|
||||||
Here's a full example to give you a taste of how Injector works::
|
Here's a full example to give you a taste of how Injector works::
|
||||||
|
|
Loading…
Reference in New Issue