Skip to content

Commit

Permalink
Testing only Python >= 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Michele Simionato committed Feb 22, 2025
1 parent 7328a36 commit a4c9663
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions src/decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,8 @@ def dispatch_info(*types):
"""
check(types)
lst = []
for anc in itertools.product(*ancestors(*types)):
lst.append(tuple(a.__name__ for a in anc))
for ancs in itertools.product(*ancestors(*types)):
lst.append(tuple(a.__name__ for a in ancs))
return lst

def _dispatch(dispatch_args, *args, **kw):
Expand Down

0 comments on commit a4c9663

Please sign in to comment.