I had the impression that 2.7 was backwards compatible with 2.6?
I have a python program that I need to run on a server. I have developed it on a python version 2.7.6 and the server has python version 2.6.6.
What happens is that my program stops running when I run it on the server after a few minutes. I get the message: ' No handlers could be found for logger "sickle.app" ' and then it quits. However I get this message when I run the program locally to, but the program keeps running.
The way I run the program is that I send the program and its requirements to the server. Create a virtual environment and pip install -r requirements.txt and then run the program. So everything should be similar on the server as on the development computer.
Am I doing something wrong here?