Skip to content

Commit

Permalink
Check compatibility with python3.8+
Browse files Browse the repository at this point in the history
  • Loading branch information
lbonn committed Feb 6, 2024
1 parent 6cbd807 commit af74a11
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ If you'd like to add another terminal (or correct an error), please open a pull

## Requirements

* python >= 3.6
* python >= 3.8
* i3 >= v3.11 or sway >= 1.2
* [i3ipc-python](https://i3ipc-python.readthedocs.io/en/latest/) >= v2.0.1
* dmenu or rofi (optional)
5 changes: 2 additions & 3 deletions i3_quickterm/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
import sys
import traceback

from collections.abc import Generator
from typing import cast, Any, Literal, Optional, TextIO
from typing import cast, Any, Dict, Generator, Literal, Optional, TextIO

from contextlib import contextmanager, suppress
from pathlib import Path
Expand Down Expand Up @@ -44,7 +43,7 @@

# types
ExecFmtMode = Literal["expanded", "string"]
Conf = dict[str, Any]
Conf = Dict[str, Any]


def TERM(
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ def find_version(*file_paths):
"Topic :: Terminals :: Terminal Emulators/X Terminals",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="i3 i3wm extensions add-ons",
packages=find_packages(where="."),
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=["i3ipc>=2.0.1"],
extras_require={
"dev": ["black", "coverage", "flake8", "pytest"],
Expand Down

0 comments on commit af74a11

Please sign in to comment.