diff options
author | Elias Müller <elias.mr1@gmail.com> | 2022-07-09 19:32:16 +0200 |
---|---|---|
committer | jaseg <136313+jaseg@users.noreply.github.com> | 2022-07-11 12:44:47 +0200 |
commit | 1ed91e44e336dc238d95ac192b1c9f87749e46a5 (patch) | |
tree | cf09d0468c4d59ad3f03d9485a10baa824159b18 /.github/workflows/tests.yml | |
parent | 49a26a663d96d5f6a5e317e40439b66f81218d6a (diff) | |
download | python-mpv-1ed91e44e336dc238d95ac192b1c9f87749e46a5.tar.gz python-mpv-1ed91e44e336dc238d95ac192b1c9f87749e46a5.tar.bz2 python-mpv-1ed91e44e336dc238d95ac192b1c9f87749e46a5.zip |
Skip Python 3.7
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r-- | .github/workflows/tests.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ef33234..5b3b553 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,8 @@ jobs: name: 'Linux - Python' strategy: matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10' ] + # '3.7' -> E ImportError: cannot import name 'InvalidStateError' from 'concurrent.futures' (/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/concurrent/futures/__init__.py) + python-version: [ '3.8', '3.9', '3.10' ] env: DISPLAY: :0 PY_MPV_SKIP_TESTS: >- |