Drop suuport for py36, add support for py311.

This commit is contained in:
Julien Palard 2023-03-11 17:02:00 +01:00
parent 974b805466
commit 945cdc76de
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.6"
requires-python = ">= 3.7"
dependencies = [
"gitignore-parser",
"polib",

View File

@ -13,7 +13,7 @@ skip_covered = True
show_missing = True
[tox]
envlist = py3{6,7,8,9,10}, flake8, mypy, black, coverage
envlist = py3{7,8,9,10,11}, flake8, mypy, black, coverage
skip_missing_interpreters = True
[testenv]