Upgrade to pymssql 2.1.5 for Py 3.8 support (#11523)

This commit is contained in:
Ash Berlin-Taylor 2020-10-14 15:43:51 +01:00 коммит произвёл GitHub
Родитель 3163912293
Коммит 545ba8ec37
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 7 удалений

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

@ -39,7 +39,6 @@ spec.loader.exec_module(mod) # type: ignore
version = mod.version # type: ignore
PY3 = sys.version_info[0] == 3
PY38 = PY3 and sys.version_info[1] >= 8
my_dir = dirname(__file__)
@ -328,7 +327,7 @@ mongo = [
'pymongo>=3.6.0',
]
mssql = [
'pymssql~=2.1.1',
'pymssql~=2.1,>=2.1.5',
]
mysql = [
'mysql-connector-python>=8.0.11, <=8.0.18',
@ -649,11 +648,6 @@ if PY3:
'snakebite',
])
if PY38:
PACKAGES_EXCLUDED_FOR_ALL.extend([
'pymssql',
])
# Those packages are excluded because they break tests (downgrading mock) and they are
# not needed to run our test suite.
PACKAGES_EXCLUDED_FOR_CI = [