Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand All @@ -47,9 +47,9 @@ jobs:
- name: Test with pytest
run: poetry run pytest --cov=./

- name: Upload coverage data to coveralls.io
run: |
pip install coveralls
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Upload coverage data to coveralls.io
# run: |
# pip install coveralls
# coveralls --service=github
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 2 additions & 1 deletion async_tkinter_loop/async_tkinter_loop.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import _tkinter
import asyncio
import tkinter as tk
from collections.abc import Coroutine
from functools import wraps
from typing import Any, Callable, Coroutine
from typing import Any, Callable

from typing_extensions import ParamSpec

Expand Down
Loading