Skip to content

Commit 10279f7

Browse files
committed
Update to Python 3.8.2
1 parent f9a326a commit 10279f7

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.travis/script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ wrapped_run() {
1919
wrapped_run plugin
2020
wrapped_run python python2.7.17
2121
wrapped_run python python3.7.6
22-
wrapped_run python python3.8.1
22+
wrapped_run python python3.8.2
2323
wrapped_run python scipy
2424
wrapped_run python xonsh

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Ready to use [AppImage][APPIMAGE] distributions of [Python][PYTHON] are provided
1818
in the [downloads](##Downloads) sections below or in the [release][RELEASE]
1919
area. A one liner example is:
2020
```
21-
wget -cq https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/python3.8.1-x86_64.AppImage && chmod u+x python3.8.1-x86_64.AppImage && ./python3.8.1-x86_64.AppImage
21+
wget -cq https://github.com/niess/linuxdeploy-plugin-python/releases/download/continuous/python3.8.2-x86_64.AppImage && chmod u+x python3.8.2-x86_64.AppImage && ./python3.8.2-x86_64.AppImage
2222
```
2323
which will install and run a [Python][PYTHON] instance. See the instructions on
2424
the [wiki][WIKI_USERS] for more detailed usage.
@@ -33,7 +33,7 @@ the [wiki][WIKI_USERS] for more detailed usage.
3333

3434
[![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)
3535
[![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.6-x86_64.AppImage)
36-
[![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.1-x86_64.AppImage)
36+
[![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.2-x86_64.AppImage)
3737
[![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)
3838
[![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)
3939
[![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/python3.8.1.sh

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

appimage/recipes/python3.8.2.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.2"
2+
export PIP_REQUIREMENTS=

tests/test_plugin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import sys
77

88

9-
TAGS = ("python2.7.17", "python3.7.6", "python3.8.1")
9+
TAGS = ("python2.7.17", "python3.7.6", "python3.8.2")
1010

1111
TESTDIR = "/tmp/test-linuxdeploy-plugin-python"
1212
ROOTDIR = os.path.realpath(os.path.dirname(__file__) + "/..").strip()
@@ -81,19 +81,19 @@ def __init__(self, *args, **kwargs):
8181
def test_python38_base(self):
8282
"""Test the base functionalities of a Python 3 AppImage
8383
"""
84-
self.check_base("python3.8.1")
84+
self.check_base("python3.8.2")
8585

8686

8787
def test_python38_modules(self):
8888
"""Test the modules availability of a Python 3 AppImage
8989
"""
90-
self.check_modules("python3.8.1")
90+
self.check_modules("python3.8.2")
9191

9292

9393
def test_python38_venv(self):
9494
"""Test venv from a Python 3 AppImage
9595
"""
96-
self.check_venv("python3.8.1")
96+
self.check_venv("python3.8.2")
9797

9898

9999
def test_python37_base(self):

0 commit comments

Comments
 (0)