we don't support py3.6; support py3.9
This commit is contained in:
parent
9ba5b2b90f
commit
3e18deef86
3 changed files with 2 additions and 3 deletions
|
@ -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:
|
||||||
|
|
|
@ -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
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue