1
0
mirror of https://github.com/HorlogeSkynet/archey4 synced 2025-04-10 12:00:19 +02:00

[CI] Python 3.10 is now stable (and PyInstaller supports it!)

This commit is contained in:
Samuel FORESTIER 2021-11-11 18:40:06 +01:00
parent cba6595db2
commit 8f84649944

@ -20,7 +20,7 @@ jobs:
# - '3.7'
# - '3.8'
- '3.9'
- '3.10-dev'
- '3.10'
- 'pypy3'
steps:
@ -49,7 +49,7 @@ jobs:
# Disabled against Pypy (see python/typed_ast#111).
# Currently disabled against Python 3.10.
- name: Lint source code against Mypy
if: ${{ matrix.python-version != 'pypy3' && matrix.python-version != '3.10-dev' }}
if: ${{ matrix.python-version != 'pypy3' && matrix.python-version != '3.10' }}
run: |
pip install mypy
mypy archey/
@ -79,9 +79,8 @@ jobs:
rm dist/archey
# Disabled against PyPy (see <https://stackoverflow.com/a/22245203>).
# Currently disabled against Python 3.10 (see pyinstaller/pyinstaller#5693).
- name: Standalone building (with PyInstaller)
if: ${{ matrix.python-version != 'pypy3' && matrix.python-version != '3.10-dev' }}
if: ${{ matrix.python-version != 'pypy3' }}
run: |
pyinstaller \
--distpath dist \