Skip to content

Commit

Permalink
once more with feeling
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Avrahami committed Feb 7, 2024
1 parent 44346a7 commit 12be6e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] # format: 3.7, 3.8, 3.9
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] # format: 3.7, 3.8, 3.9
platform: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
Expand All @@ -27,6 +27,7 @@ jobs:
run: |
sh scripts/install.sh
- name: Lint
if: matrix.python-version != '3.7'
run: |
poetry run sh scripts/lint.sh
- name: Tests
Expand Down
2 changes: 1 addition & 1 deletion envolved/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

T = TypeVar("T")

if version_info >= (3, 10):
if version_info >= (3, 11):
# theoretically, I'd like to restrict this to keyword arguments only, but that's not possible yet in python
Parser: TypeAlias = Callable[Concatenate[str, ...], T]
else:
Expand Down

0 comments on commit 12be6e9

Please sign in to comment.