Skip to content

Commit

Permalink
Enables PyInstaller usage against Python 3.8 but disables it for 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel FORESTIER committed Oct 3, 2020
1 parent 21f0eb2 commit c203dcb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ script:
- time ./dist/archey

# Build a standalone script from sources (PyInstaller).
# (currently) disabled for Python 3.8 and PyPy.
# See <pyinstaller/pyinstaller#4311> & <https://stackoverflow.com/a/22245203>.
# (currently) disabled against Python 3.10 (not supported yet).
# Disabled for PyPy (see <https://stackoverflow.com/a/22245203>).
- >
if ! [[ "$TRAVIS_PYTHON_VERSION" =~ ^(3\.8|pypy3)$ ]]; then
if ! [[ "$TRAVIS_PYTHON_VERSION" =~ ^(3\.10|pypy3)$ ]]; then
pyinstaller \
--distpath dist \
--specpath dist \
Expand Down

0 comments on commit c203dcb

Please sign in to comment.