|
23 | 23 | }, |
24 | 24 | "manylinux": { |
25 | 25 | "post_build_steps": [ |
| 26 | + ["echo", "------ Python 3.9 ------"], |
| 27 | + ["/opt/python/cp39-cp39/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
| 28 | + ["/opt/python/cp39-cp39/bin/python", "-m", "pip", "install", ".", "--verbose"], |
| 29 | + ["/opt/python/cp39-cp39/bin/python", "-m", "pip", "install", "boto3", "autopep8"], |
| 30 | + ["/opt/python/cp39-cp39/bin/python", "-m", "unittest", "discover", "--verbose"], |
| 31 | + ["echo", "------ Python 3.8 ------"], |
| 32 | + ["/opt/python/cp38-cp38/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
| 33 | + ["/opt/python/cp38-cp38/bin/python", "-m", "pip", "install", ".", "--verbose"], |
| 34 | + ["/opt/python/cp38-cp38/bin/python", "-m", "pip", "install", "boto3", "autopep8"], |
| 35 | + ["/opt/python/cp38-cp38/bin/python", "-m", "unittest", "discover", "--verbose"], |
26 | 36 | ["echo", "------ Python 3.7 ------"], |
27 | 37 | ["/opt/python/cp37-cp37m/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
28 | 38 | ["/opt/python/cp37-cp37m/bin/python", "-m", "pip", "install", ".", "--verbose"], |
|
32 | 42 | ["/opt/python/cp36-cp36m/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
33 | 43 | ["/opt/python/cp36-cp36m/bin/python", "-m", "pip", "install", ".", "--verbose"], |
34 | 44 | ["/opt/python/cp36-cp36m/bin/python", "-m", "pip", "install", "boto3", "autopep8"], |
35 | | - ["/opt/python/cp36-cp36m/bin/python", "-m", "unittest", "discover", "--verbose"], |
36 | | - ["echo", "------ Python 3.5 ------"], |
37 | | - ["/opt/python/cp35-cp35m/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"], |
38 | | - ["/opt/python/cp35-cp35m/bin/python", "-m", "pip", "install", ".", "--verbose"], |
39 | | - ["/opt/python/cp35-cp35m/bin/python", "-m", "pip", "install", "boto3", "autopep8"], |
40 | | - ["/opt/python/cp35-cp35m/bin/python", "-m", "unittest", "discover", "--verbose"] |
| 45 | + ["/opt/python/cp36-cp36m/bin/python", "-m", "unittest", "discover", "--verbose"] |
41 | 46 | ], |
42 | 47 | "run_tests": false, |
43 | 48 | "_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