File tree Expand file tree Collapse file tree 11 files changed +46
-22
lines changed
Expand file tree Collapse file tree 11 files changed +46
-22
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ script:
2424 - # Test the Python AppImages
2525 - mkdir -p home/test/.local/lib/python2.7/site-packages
2626 - mkdir -p home/test/.local/lib/python3.7/site-packages
27+ - mkdir -p home/test/.local/lib/python3.8/site-packages
2728 - HOME=$PWD/home/test USER=test PATH="$PWD/home/test/.local/bin:$PATH" python3 -m tests
2829
2930after_success :
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ wrapped_run() {
1717}
1818
1919wrapped_run plugin
20- wrapped_run python python2
21- wrapped_run python python3
20+ wrapped_run python python2.7.17
21+ wrapped_run python python3.7.5
22+ wrapped_run python python3.8.0
2223wrapped_run python scipy
2324wrapped_run python xonsh
Original file line number Diff line number Diff line change @@ -17,15 +17,16 @@ are located on the [wiki][WIKI_DEVS].
1717Ready to use [ AppImage] [ APPIMAGE ] distributions of [ Python] [ PYTHON ] are provided
1818[ below] ( ##Downloads ) or in the [ release] [ RELEASE ] area. A one liner example is:
1919```
20- wget -cq https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/python3-x86_64.AppImage && chmod u+x python3-x86_64.AppImage && ./python3-x86_64.AppImage
20+ wget -cq https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/python3.8.0 -x86_64.AppImage && chmod u+x python3.8.0 -x86_64.AppImage && ./python3.8.0 -x86_64.AppImage
2121```
2222which will install and run a [ Python] [ PYTHON ] instance. See the instructions on
2323the [ wiki] [ WIKI_USERS ] for more detailed usage.
2424
2525## Downloadable AppImages
2626
27- [ ![ Python 2] ( https://img.shields.io/badge/python2-x86_64-blue.svg )] ( https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/python2-x86_64.AppImage )
28- [ ![ Python 3] ( https://img.shields.io/badge/python3-x86_64-blue.svg )] ( https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/python3-x86_64.AppImage )
27+ [ ![ Python 2.7] ( https://img.shields.io/badge/python2.7-x86_64-blue.svg )] ( https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/python2.7.17-x86_64.AppImage )
28+ [ ![ Python 3.7] ( https://img.shields.io/badge/python3.7-x86_64-blue.svg )] ( https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/python3.7.5-x86_64.AppImage )
29+ [ ![ Python 3.8] ( https://img.shields.io/badge/python3.8-x86_64-blue.svg )] ( https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/python3.8.0-x86_64.AppImage )
2930[ ![ Scipy] ( https://img.shields.io/badge/scipy-x86_64-blue.svg )] ( https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/scipy-x86_64.AppImage )
3031[ ![ Xonsh] ( https://img.shields.io/badge/xonsh-x86_64-blue.svg )] ( https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/xonsh-x86_64.AppImage )
3132[ ![ Plugin] ( https://img.shields.io/badge/plugin-x86_64-blue.svg )] ( https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/linuxdeploy-plugin-python-x86_64.AppImage )
Original file line number Diff line number Diff line change 1+ export PYTHON_VERSION=" 2.7.17"
2+ export PIP_REQUIREMENTS=
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ export PYTHON_VERSION=" 3.7.5"
2+ export PIP_REQUIREMENTS=
Original file line number Diff line number Diff line change 1+ export PYTHON_VERSION=" 3.8.0"
2+ export PIP_REQUIREMENTS=
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- export PYTHON_VERSION=" 3.7.3 "
1+ export PYTHON_VERSION=" 3.7.5 "
22export PIP_REQUIREMENTS=" numpy scipy matplotlib sympy pandas"
33
44export LD_LIBRARY_PATH=" AppDir/usr/python/lib/python3.7/site-packages/numpy/.libs:${LD_LIBRARY_PATH} "
Original file line number Diff line number Diff line change 1- export PYTHON_VERSION=" 3.7.3 "
1+ export PYTHON_VERSION=" 3.7.5 "
22export PIP_REQUIREMENTS=" xonsh prompt_toolkit gnureadline Pygments"
33export PYTHON_ENTRYPOINT=' "-u" "-c" "from xonsh.main import main; main()"'
44export LD_LIBRARY_PATH=" AppDir/usr/python/lib/python3.7/site-packages/.libsgnureadline:${LD_LIBRARY_PATH} "
You can’t perform that action at this time.
0 commit comments