1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-31 20:58:56 +00:00

Add note about telnetlib3 only supporting python 3.6

This commit is contained in:
John Fleming 2024-01-31 02:11:19 -05:00
parent 5c36e431eb
commit be82ac869b

View File

@ -17,4 +17,4 @@ importlib-resources>=1.3; python_version < '3.9'
truststore>=0.8.0; python_version >= '3.10'
setuptools>=60.8.1; python_version >= '3.7'
setuptools==59.6.0; python_version < '3.7' # v59.6.0 is the last version to support Python 3.6
telnetlib3>=2.0.4; python_version >= '3.7'
telnetlib3>=2.0.4; python_version >= '3.7' # 2.0.0 only support 3.7 and higher.