Merge branch 'dev' into remove-eol-python-versions

This commit is contained in:
Ekin Dursun 2024-07-25 20:43:13 +03:00 коммит произвёл GitHub
Родитель 76ad041a83 db1212ac06
Коммит 75b121cf46
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
4 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -6,6 +6,10 @@ Unreleased
++++++++++
* Remove EOL Python versions, namely 3.6 and 3.7.
0.1.72
++++++
* Bump `pylint` to 3
0.1.71
++++++
* `azdev extension show`: Show detailed extension info that installed in your development environment.

Просмотреть файл

@ -4,4 +4,4 @@
# license information.
# -----------------------------------------------------------------------------
__VERSION__ = '0.1.71'
__VERSION__ = '0.1.72'

Просмотреть файл

@ -6,11 +6,9 @@
import astroid
from pylint.checkers import BaseChecker
from pylint.interfaces import IAstroidChecker
class ShowCommandChecker(BaseChecker):
__implements__ = IAstroidChecker
name = 'show-command'
priority = -1

Просмотреть файл

@ -70,7 +70,7 @@ setup(
'gitpython',
'jinja2',
'knack',
'pylint>=2.12,<3',
'pylint<4',
'pytest-xdist', # depends on pytest-forked
'pytest-forked',
'pytest>=5.0.0',