we don't support py3.6; support py3.9

This commit is contained in:
jesopo 2022-01-07 11:41:35 +00:00
parent 9ba5b2b90f
commit 3e18deef86
3 changed files with 2 additions and 3 deletions

View File

@ -3,7 +3,7 @@ cache: pip
python: python:
- "3.7" - "3.7"
- "3.8" - "3.8"
- "3.8-dev" - "3.9"
install: install:
- pip3 install mypy -r requirements.txt - pip3 install mypy -r requirements.txt
script: script:

View File

@ -1,7 +1,6 @@
anyio ~=2.0.2 anyio ~=2.0.2
asyncio-rlock ~=0.1.0 asyncio-rlock ~=0.1.0
asyncio-throttle ~=1.0.1 asyncio-throttle ~=1.0.1
dataclasses ~=0.6; python_version<"3.7"
ircstates ~=0.11.10 ircstates ~=0.11.10
async_stagger ~=0.3.0 async_stagger ~=0.3.0
async_timeout ~=3.0.1 async_timeout ~=3.0.1

View File

@ -26,6 +26,6 @@ setup(
"Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows",
"Topic :: Communications :: Chat :: Internet Relay Chat" "Topic :: Communications :: Chat :: Internet Relay Chat"
], ],
python_requires='>=3.6', python_requires='>=3.7',
install_requires=install_requires install_requires=install_requires
) )