Add python 3.10 constraint for pyspnego (#74612)
This commit is contained in:
parent
e6d7aecbe4
commit
a277644301
2 changed files with 3 additions and 0 deletions
2
changelogs/fragments/pyspnego-py310.yaml
Normal file
2
changelogs/fragments/pyspnego-py310.yaml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- ansible-test - Add constraint for ``pyspnego>=0.1.6`` for Python 3.10 - https://github.com/ansible/ansible/pull/74612
|
|
@ -46,3 +46,4 @@ botocore >= 1.10.0 ; python_version >= '2.7' # adds support for the following AW
|
||||||
setuptools < 37 ; python_version == '2.6' # setuptools 37 and later require python 2.7 or later
|
setuptools < 37 ; python_version == '2.6' # setuptools 37 and later require python 2.7 or later
|
||||||
setuptools < 45 ; python_version == '2.7' # setuptools 45 and later require python 3.5 or later
|
setuptools < 45 ; python_version == '2.7' # setuptools 45 and later require python 3.5 or later
|
||||||
gssapi < 1.6.0 ; python_version <= '2.7' # gssapi 1.6.0 and later require python 3 or later
|
gssapi < 1.6.0 ; python_version <= '2.7' # gssapi 1.6.0 and later require python 3 or later
|
||||||
|
pyspnego >= 0.1.6 ; python_version >= '3.10' # bug in older releases breaks on Python 3.10
|
||||||
|
|
Loading…
Reference in a new issue