|
23 | 23 | }, |
24 | 24 | "manylinux": { |
25 | 25 | "post_build_steps": [ |
| 26 | + ["echo", "------ Python 3.7 ------"], |
| 27 | + ["/opt/python/cp37-cp37m/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
| 28 | + ["/opt/python/cp37-cp37m/bin/python", "-m", "pip", "install", ".", "--verbose"], |
| 29 | + ["/opt/python/cp37-cp37m/bin/python", "-m", "pip", "install", "boto3", "autopep8"], |
| 30 | + ["/opt/python/cp37-cp37m/bin/python", "-m", "unittest", "discover", "--verbose"], |
26 | 31 | ["echo", "------ Python 3.6 ------"], |
27 | 32 | ["/opt/python/cp36-cp36m/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
28 | 33 | ["/opt/python/cp36-cp36m/bin/python", "-m", "pip", "install", ".", "--verbose"], |
|
32 | 37 | ["/opt/python/cp35-cp35m/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
33 | 38 | ["/opt/python/cp35-cp35m/bin/python", "-m", "pip", "install", ".", "--verbose"], |
34 | 39 | ["/opt/python/cp35-cp35m/bin/python", "-m", "pip", "install", "boto3", "autopep8"], |
35 | | - ["/opt/python/cp35-cp35m/bin/python", "-m", "unittest", "discover", "--verbose"], |
36 | | - ["echo", "------ Python 3.4 ------"], |
37 | | - ["/opt/python/cp34-cp34m/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
38 | | - ["/opt/python/cp34-cp34m/bin/python", "-m", "pip", "install", ".", "--verbose"], |
39 | | - ["/opt/python/cp34-cp34m/bin/python", "-m", "pip", "install", "boto3", "autopep8"], |
40 | | - ["/opt/python/cp34-cp34m/bin/python", "-m", "unittest", "discover", "--verbose"], |
41 | | - ["echo", "------ Python 2.7 narrow-unicode ------"], |
42 | | - ["/opt/python/cp27-cp27m/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
43 | | - ["/opt/python/cp27-cp27m/bin/python", "-m", "pip", "install", ".", "--verbose"], |
44 | | - ["/opt/python/cp27-cp27m/bin/python", "-m", "pip", "install", "boto3", "autopep8"], |
45 | | - ["/opt/python/cp27-cp27m/bin/python", "-m", "unittest", "discover", "--verbose"], |
46 | | - ["echo", "------ Python 2.7 wide-unicode ------"], |
47 | | - ["/opt/python/cp27-cp27mu/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
48 | | - ["/opt/python/cp27-cp27mu/bin/python", "-m", "pip", "install", ".", "--verbose"], |
49 | | - ["/opt/python/cp27-cp27mu/bin/python", "-m", "pip", "install", "boto3", "autopep8"], |
50 | | - ["/opt/python/cp27-cp27mu/bin/python", "-m", "unittest", "discover", "--verbose"] |
| 40 | + ["/opt/python/cp35-cp35m/bin/python", "-m", "unittest", "discover", "--verbose"] |
51 | 41 | ], |
52 | 42 | "run_tests": false, |
53 | 43 | "_comment": "manylinux has all its own build steps, turn off 'tests' which is where normal build steps are declared. using data to program sucks" |
|
0 commit comments