Merge pull request #754 from oddstr13/pr-pyyaml-version-py2-1

PyYAML 6 drops py2 support
This commit is contained in:
Odd Stråbø 2023-08-01 00:54:28 +02:00 committed by GitHub
commit eadcc46395
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,8 @@ six >= 1.13
python-dateutil >= 2.8.1 python-dateutil >= 2.8.1
requests >= 2.22 requests >= 2.22
futures >= 2.2; python_version < '3.0' futures >= 2.2; python_version < '3.0'
PyYAML >= 6.0 PyYAML >= 5.4; python_version < '3.0'
PyYAML >= 6.0; python_version >= '3.6'
Kodistubs ~= 18.0; python_version < '3.0' Kodistubs ~= 18.0; python_version < '3.0'
Kodistubs ~= 20.0; python_version >= '3.6' Kodistubs ~= 20.0; python_version >= '3.6'
@ -18,7 +19,8 @@ flake8-import-order >= 0.18
websocket-client >= 0.57.0 websocket-client >= 0.57.0
types-requests >= 2.31 types-requests >= 2.31
types-PyYAML >= 6.0 types-PyYAML >= 5.4; python_version < '3.0'
types-PyYAML >= 6.0; python_version >= '3.6'
types-six >= 1.13 types-six >= 1.13
types-python-dateutil >= 2.8.1 types-python-dateutil >= 2.8.1
types-setuptools >= 44.1.1 types-setuptools >= 44.1.1