Aug-25-2017, 07:09 PM
I have done some python for build scripts in the past, but not extensively, and nothing recently. I have a new project, with python written in 3.25, that has compiled .exes (I have not done .exes previously). I have a couple of questions. Python 3.6 is out now, is that fully backward compatible with 3.25 (Thus I can install and learn 3.6)? Also, if it is not backwards compatible, where can I get documentation that is specific to 3.5, so that I can learn what I need to learn.
Not sure if this information is useful here, but this is what is at the top of a setup.py...
import os
import sys
import glob
import boto3
import botocore import BOTOCORE_ROOT
import cx_freeze import setup, Executable
import shutil import copyfile
Not sure if this information is useful here, but this is what is at the top of a setup.py...
import os
import sys
import glob
import boto3
import botocore import BOTOCORE_ROOT
import cx_freeze import setup, Executable
import shutil import copyfile
