Update Python version

This commit is contained in:
Valentin Niess
2021-05-16 18:18:11 +02:00
parent 51394820ff
commit a817cfc1f3
2 changed files with 13 additions and 7 deletions

View File

@@ -15,16 +15,22 @@ jobs:
image: ['1', '2010', '2014']
arch: [x86_64, i686]
tag: [cp27-cp27m, cp27-cp27mu, cp35-cp35m, cp36-cp36m, cp37-cp37m,
cp38-cp38, cp39-cp39]
cp38-cp38, cp39-cp39, cp310-cp310]
exclude:
- image: '1'
tag: cp310-cp310
- image: '2010'
tag: cp27-cp27m
- image: '2010'
tag: cp27-cp27mu
- image: '2010'
tag: cp35-cp35m
- image: '2014'
tag: cp27-cp27m
- image: '2014'
tag: cp27-cp27mu
- image: '2014'
tag: cp35-cp35m
steps:
- uses: actions/checkout@v2
@@ -62,7 +68,7 @@ jobs:
if: github.ref == 'refs/heads/master'
strategy:
matrix:
version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/download-artifact@v1

View File

@@ -15,10 +15,10 @@ single file and changing its mode to executable, e.g. as:
```sh
wget https://github.com/niess/python-appimage/releases/download/\
python3.9/python3.9.1-cp39-cp39-manylinux1_x86_64.AppImage
chmod +x python3.9.1-cp39-cp39-manylinux1_x86_64.AppImage
python3.9/python3.9.4-cp39-cp39-manylinux1_x86_64.AppImage
chmod +x python3.9.4-cp39-cp39-manylinux1_x86_64.AppImage
./python3.9.1-cp39-cp39-manylinux1_x86_64.AppImage
./python3.9.4-cp39-cp39-manylinux1_x86_64.AppImage
```
This should start a Python 3.8 interactive session on _almost_ any Linux
@@ -30,9 +30,9 @@ its standard library. However, if you plan to install extra packages we
recommend extracting the AppImage, e.g. as:
```sh
./python3.9.1-cp39-cp39-manylinux1_x86_64.AppImage --appimage-extract
./python3.9.4-cp39-cp39-manylinux1_x86_64.AppImage --appimage-extract
mv squashfs-root python3.9
rm -f python3.9.1-cp39-cp39-manylinux1_x86_64.AppImage
rm -f python3.9.4-cp39-cp39-manylinux1_x86_64.AppImage
export PATH="$(pwd)/python3.9/usr/bin:$PATH"
```