Skip to content

Commit a4c9663

Browse files
author
Michele Simionato
committed
Testing only Python >= 3.8
1 parent 7328a36 commit a4c9663

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
19+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
2020

2121
steps:
2222
- uses: actions/checkout@v4

src/decorator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -423,8 +423,8 @@ def dispatch_info(*types):
423423
"""
424424
check(types)
425425
lst = []
426-
for anc in itertools.product(*ancestors(*types)):
427-
lst.append(tuple(a.__name__ for a in anc))
426+
for ancs in itertools.product(*ancestors(*types)):
427+
lst.append(tuple(a.__name__ for a in ancs))
428428
return lst
429429

430430
def _dispatch(dispatch_args, *args, **kw):

0 commit comments

Comments
 (0)