Hi

I am getting an error when running a script in production.


Here are the details.

# Session Timeout Enabled on linux
/usr/lib64/python2.6/site-packages/cryptography/__init__.py:26: 
DeprecationWarning: Python 2.6 is no longer supported by the Python core team, 
please upgrade your Python. A future version of cryptography will drop support 
for Python 2.6
  DeprecationWarning
No handlers could be found for logger "paramiko.transport"
coherent_path_default_score
coherent_path_default_score failed with exception

Blue Uranium is our dev box which is working fine. Blue Neon is our Production 
Box where were are getting the above error.

Can you please let me know if this issue is related to a version change?

Thanks
Anil

Blue Uranium

# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.

from __future__ import absolute_import, division, print_function

__all__ = [
    "__title__", "__summary__", "__uri__", "__version__", "__author__",
    "__email__", "__license__", "__copyright__",
]

__title__ = "cryptography"
__summary__ = ("cryptography is a package which provides cryptographic recipes"
               " and primitives to Python developers.")
__uri__ = "https://github.com/pyca/cryptography";

__version__ = "2.0.3"

__author__ = "The cryptography developers"
__email__ = "cryptography-dev@python.org<mailto:cryptography-dev@python.org>"

__license__ = "BSD or Apache License, Version 2.0"
__copyright__ = "Copyright 2013-2017 {0}".format(__author__)


Blue Neon

# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.

from __future__ import absolute_import, division, print_function

__all__ = [
    "__title__", "__summary__", "__uri__", "__version__", "__author__",
    "__email__", "__license__", "__copyright__",
]

__title__ = "cryptography"
__summary__ = ("cryptography is a package which provides cryptographic recipes"
               " and primitives to Python developers.")
__uri__ = "https://github.com/pyca/cryptography";

__version__ = "1.4"

__author__ = "The cryptography developers"
__email__ = "cryptography-dev@python.org<mailto:cryptography-dev@python.org>"

__license__ = "BSD or Apache License, Version 2.0"
__copyright__ = "Copyright 2013-2016 {0}".format(__author__)


_______________________________________________
Cryptography-dev mailing list
Cryptography-dev@python.org
https://mail.python.org/mailman/listinfo/cryptography-dev

Reply via email to