diff options
author | Devaev Maxim <[email protected]> | 2019-11-14 23:54:19 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2019-11-14 23:54:19 +0300 |
commit | 97678bba80923ae80f2ed0794e7b77b1a08c2d59 (patch) | |
tree | 187836a8c76f0bf33fe046a3fa7661e9bf392d50 | |
parent | 3271f2d46fd08617ec9418ab9227084762e685e0 (diff) |
python == 3.8
-rw-r--r-- | PKGBUILD | 4 | ||||
-rwxr-xr-x | setup.py | 2 | ||||
-rw-r--r-- | testenv/linters/mypy.ini | 2 | ||||
-rw-r--r-- | testenv/tox.ini | 2 |
4 files changed, 5 insertions, 5 deletions
@@ -24,8 +24,8 @@ url="https://github.com/pikvm/kvmd" license=(GPL) arch=(any) depends=( - "python>=3.7" - "python<3.8" + "python>=3.8" + "python<3.9" python-yaml python-aiohttp python-aiofiles @@ -122,7 +122,7 @@ def main() -> None: classifiers=[ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Development Status :: 4 - Beta", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Topic :: System :: Systems Administration", "Operating System :: POSIX :: Linux", "Intended Audience :: System Administrators", diff --git a/testenv/linters/mypy.ini b/testenv/linters/mypy.ini index 20e0d3a9..a48e58e7 100644 --- a/testenv/linters/mypy.ini +++ b/testenv/linters/mypy.ini @@ -1,5 +1,5 @@ [mypy] -python_version = 3.7 +python_version = 3.8 ignore_missing_imports = true disallow_untyped_defs = true strict_optional = true diff --git a/testenv/tox.ini b/testenv/tox.ini index ab46fbb8..c6824180 100644 --- a/testenv/tox.ini +++ b/testenv/tox.ini @@ -3,7 +3,7 @@ envlist = flake8, pylint, mypy, vulture, pytest, eslint, htmlhint skipsdist = true [testenv] -basepython = python3.7 +basepython = python3.8 sitepackages = true changedir = /src |