Skip to content

Commit 81e1986

Browse files
committed
Add a Python 3.8 recipe and tag withn full version
1 parent fb5366f commit 81e1986

File tree

11 files changed

+46
-22
lines changed

11 files changed

+46
-22
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

2930
after_success:

.travis/script.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ wrapped_run() {
1717
}
1818

1919
wrapped_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
2223
wrapped_run python scipy
2324
wrapped_run python xonsh

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,16 @@ are located on the [wiki][WIKI_DEVS].
1717
Ready 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
```
2222
which will install and run a [Python][PYTHON] instance. See the instructions on
2323
the [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)

appimage/recipes/python2.7.17.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export PYTHON_VERSION="2.7.17"
2+
export PIP_REQUIREMENTS=

appimage/recipes/python2.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

appimage/recipes/python3.7.5.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export PYTHON_VERSION="3.7.5"
2+
export PIP_REQUIREMENTS=

appimage/recipes/python3.8.0.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export PYTHON_VERSION="3.8.0"
2+
export PIP_REQUIREMENTS=

appimage/recipes/python3.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

appimage/recipes/scipy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export PYTHON_VERSION="3.7.3"
1+
export PYTHON_VERSION="3.7.5"
22
export PIP_REQUIREMENTS="numpy scipy matplotlib sympy pandas"
33

44
export LD_LIBRARY_PATH="AppDir/usr/python/lib/python3.7/site-packages/numpy/.libs:${LD_LIBRARY_PATH}"

appimage/recipes/xonsh.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export PYTHON_VERSION="3.7.3"
1+
export PYTHON_VERSION="3.7.5"
22
export PIP_REQUIREMENTS="xonsh prompt_toolkit gnureadline Pygments"
33
export PYTHON_ENTRYPOINT='"-u" "-c" "from xonsh.main import main; main()"'
44
export LD_LIBRARY_PATH="AppDir/usr/python/lib/python3.7/site-packages/.libsgnureadline:${LD_LIBRARY_PATH}"

0 commit comments

Comments
 (0)