diff --git a/README.md b/README.md index d9dac13a..30d30ecf 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,10 @@ Starlette is a small library for working with ASGI. It gives you `Request` and `Response` classes, a test client, and a decorator for writing super-minimal applications. +**Requirements:** + +Python 3.6+ + **Installation:** ```shell diff --git a/setup.py b/setup.py index 3e093297..3777b4ec 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ setup( 'Operating System :: OS Independent', 'Topic :: Internet :: WWW/HTTP', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], ) diff --git a/starlette/__init__.py b/starlette/__init__.py index e1b92877..fb99ee91 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -13,4 +13,4 @@ __all__ = ( "Request", "TestClient", ) -__version__ = "0.1.0" +__version__ = "0.1.1"