From 690785b1a75d72ed8d83bffca1419ceb83787d61 Mon Sep 17 00:00:00 2001 From: Kurt Griffiths Date: Tue, 12 May 2015 11:32:33 -0500 Subject: [PATCH] doc(README): Mention Jython 2.7 support --- README.md | 4 ++-- README.rst | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 02f8cd7..bc2e076 100644 --- a/README.md +++ b/README.md @@ -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 ### diff --git a/README.rst b/README.rst index 38af4a7..20b3510 100644 --- a/README.rst +++ b/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 `__. -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 `__. +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