Skip to content

Commit eb3e870

Browse files
committed
Install toml extra for Python <3.11
1 parent 6c998fb commit eb3e870

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,9 @@ jobs:
6969
- name: Install coverage
7070
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
7171
run: |
72-
# Be wary that this does not install typing_extensions in the future
73-
pip install coverage
72+
# Be wary that this does not install typing_extensions in the future.
73+
# 'toml' extra is needed to read settings from pyproject.toml on Python <3.11
74+
pip install 'coverage[toml]'
7475
7576
- name: Test typing_extensions with coverage
7677
if: ${{ !startsWith(matrix.python-version, 'pypy') }}

0 commit comments

Comments
 (0)