From 3e18deef8646bd1fb3b62cfe72f8e6e6eb046419 Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 7 Jan 2022 11:41:35 +0000 Subject: [PATCH] we don't support py3.6; support py3.9 --- .travis.yml | 2 +- requirements.txt | 1 - setup.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4311574..8b924d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ cache: pip python: - "3.7" - "3.8" - - "3.8-dev" + - "3.9" install: - pip3 install mypy -r requirements.txt script: diff --git a/requirements.txt b/requirements.txt index 9437d30..347b24f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,6 @@ anyio ~=2.0.2 asyncio-rlock ~=0.1.0 asyncio-throttle ~=1.0.1 -dataclasses ~=0.6; python_version<"3.7" ircstates ~=0.11.10 async_stagger ~=0.3.0 async_timeout ~=3.0.1 diff --git a/setup.py b/setup.py index 7bc3e5c..b4b6b17 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,6 @@ setup( "Operating System :: Microsoft :: Windows", "Topic :: Communications :: Chat :: Internet Relay Chat" ], - python_requires='>=3.6', + python_requires='>=3.7', install_requires=install_requires )