Skip to content

Commit

Permalink
Fixed CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
superbobry committed Nov 12, 2023
1 parent fae13af commit 259ee02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.7"]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.10"]

steps:
- uses: "actions/checkout@v2"
Expand Down Expand Up @@ -44,5 +44,6 @@ jobs:
- name: "Run mypy"
run: |
set -xe
python -m pip install mypy==1.7.0
python -m mypy --strict pyte
shell: bash
4 changes: 2 additions & 2 deletions pyte/screens.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
import warnings
from collections import deque, defaultdict
from functools import lru_cache
from typing import Any, Callable, DefaultDict, Dict, Generator, List, NamedTuple, Optional, Set, Sequence, TextIO, TypeVar
from typing import Any, Callable, Dict, Generator, List, NamedTuple, Optional, Set, Sequence, TextIO, TypeVar

from wcwidth import wcwidth as _wcwidth # type: ignore[import]
from wcwidth import wcwidth as _wcwidth # type: ignore[import-untyped]

from . import (
charsets as cs,
Expand Down

0 comments on commit 259ee02

Please sign in to comment.