diff --git a/setup.py b/setup.py index 71c4455a..a2f1615a 100644 --- a/setup.py +++ b/setup.py @@ -41,9 +41,9 @@ minimal_requirements = [ ] home_requirements = [ - "aiofiles==0.8.*", + "aiofiles==%s" % ("22.1.*" if sys.version_info >= (3, 7) else "0.8.0"), "ajsonrpc==1.*", - "starlette==%s" % ("0.20.*" if sys.version_info >= (3, 7) else "0.19.1"), + "starlette==%s" % ("0.21.*" if sys.version_info >= (3, 7) else "0.19.1"), "uvicorn==%s" % ("0.18.*" if sys.version_info >= (3, 7) else "0.16.0"), "wsproto==%s" % ("1.2.*" if sys.version_info >= (3, 7) else "1.0.0"), ] diff --git a/tox.ini b/tox.ini index 8332f8d3..8972933e 100644 --- a/tox.ini +++ b/tox.ini @@ -12,9 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -[tox] -envlist = py36,py37,py38,py39 - [isort] profile = black known_third_party=OpenSSL, SCons, jsonrpc, twisted, zope @@ -29,7 +26,7 @@ filterwarnings = passenv = * usedevelop = True deps = - py36,py37,py38,py39: black + black isort pylint pytest