Skip to content

Commit

Permalink
Drop Python 3.8, run tests on Python 3.13 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
insolor authored Dec 5, 2024
1 parent dafb4d5 commit b421235
Show file tree
Hide file tree
Showing 4 changed files with 559 additions and 514 deletions.
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

0 comments on commit b421235

Please sign in to comment.