remove python3.6; add python3.9

This commit is contained in:
jesopo 2022-01-07 11:39:30 +00:00
parent 83215e996b
commit a389c6f3cb
2 changed files with 2 additions and 3 deletions

View File

@ -1,10 +1,9 @@
language: python
cache: pip
python:
- "3.6"
- "3.7"
- "3.8"
- "3.8-dev"
- "3.9"
install:
- pip3 install mypy types-cachetools -r requirements.txt
before_script:

View File

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