Merge pull request #547 from kgriffs/readme
doc(README): Mention Jython 2.7 support
This commit is contained in:
@@ -20,7 +20,7 @@ Falcon is a [high-performance Python framework][home] for building cloud APIs. I
|
||||
|
||||
**Light.** Only the essentials are included, with *six* and *mimeparse* being the only dependencies outside the standard library. We work to keep the code lean, making Falcon easier to test, optimize, and deploy.
|
||||
|
||||
**Flexible.** Falcon can be deployed in a variety of ways, depending on your needs. The framework speaks WSGI, and works great with [Python 2.6 and 2.7, PyPy, and Python 3.3/3.4][ci]. There's no tight coupling with any async framework, leaving you free to mix-and-match what you need.
|
||||
**Flexible.** Falcon can be deployed in a variety of ways, depending on your needs. The framework speaks WSGI, and works great with [CPython 2.6/2.7, PyPy, Jython 2.7, and CPython 3.3/3.4][ci]. There's no tight coupling with any async or database framework, leaving you free to mix-and-match what you need.
|
||||
|
||||
[bench]: http://falconframework.org/#Metrics
|
||||
[ci]: https://travis-ci.org/falconry/falcon
|
||||
@@ -34,7 +34,7 @@ Falcon is a [high-performance Python framework][home] for building cloud APIs. I
|
||||
* Idiomatic HTTP error responses via a handy exception base class
|
||||
* DRY request processing using global, resource, and method hooks
|
||||
* Snappy unit testing through WSGI helpers and mocks
|
||||
* Python 2.6, Python 2.7, PyPy and Python 3.3/3.4 support
|
||||
* CPython 2.6/2.7, PyPy, Jython 2.7, and CPython 3.3/3.4 support
|
||||
* 20% speed boost when Cython is available
|
||||
|
||||
### Install ###
|
||||
|
||||
10
README.rst
10
README.rst
@@ -33,10 +33,10 @@ being the only dependencies outside the standard library. We work to keep
|
||||
the code lean, making Falcon easier to test, optimize, and deploy.
|
||||
|
||||
**Flexible.** Falcon can be deployed in a variety of ways, depending on
|
||||
your needs. The framework speaks WSGI, and works great with `Python 2.6
|
||||
and 2.7, PyPy, and Python 3.3/3.4 <https://travis-ci.org/falconry/falcon>`__.
|
||||
There's no tight coupling with any async framework, leaving you free to
|
||||
mix-and-match what you need.
|
||||
your needs. The framework speaks WSGI, and works great with `CPython 2.6/2.7,
|
||||
PyPy, Jython 2.7, and CPython 3.3/3.4 <https://travis-ci.org/falconry/falcon>`__.
|
||||
There's no tight coupling with any async or database framework, leaving you
|
||||
free to mix-and-match what you need.
|
||||
|
||||
Features
|
||||
~~~~~~~~
|
||||
@@ -49,7 +49,7 @@ Features
|
||||
- Idiomatic HTTP error responses via a handy exception base class
|
||||
- DRY request processing using global, resource, and method hooks
|
||||
- Snappy unit testing through WSGI helpers and mocks
|
||||
- Python 2.6, Python 2.7, PyPy and Python 3.3/3.4 support
|
||||
- CPython 2.6/2.7, PyPy, Jython 2.7, and CPython 3.3/3.4 support
|
||||
- 20% speed boost when Cython is available
|
||||
|
||||
Install
|
||||
|
||||
Reference in New Issue
Block a user