mirror of https://github.com/encode/starlette.git
Bump Python requirements
This commit is contained in:
parent
eef545df41
commit
b60f72ab33
|
@ -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
|
||||
|
|
2
setup.py
2
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',
|
||||
],
|
||||
)
|
||||
|
|
|
@ -13,4 +13,4 @@ __all__ = (
|
|||
"Request",
|
||||
"TestClient",
|
||||
)
|
||||
__version__ = "0.1.0"
|
||||
__version__ = "0.1.1"
|
||||
|
|
Loading…
Reference in New Issue