File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ description = """ShellOracle is a pluggable terminal utility that takes a natura
1717command and substitutes it into your terminal buffer."""
1818
1919readme = " README.md"
20- requires-python = " >=3.11 "
20+ requires-python = " >=3.9 "
2121classifiers = [
2222 " Programming Language :: Python :: 3" ,
2323 " License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
Original file line number Diff line number Diff line change 1+ from __future__ import annotations
2+
13from collections .abc import MutableMapping
24from pathlib import Path
35from typing import Any
Original file line number Diff line number Diff line change 1+ from __future__ import annotations
2+
13import json
24from dataclasses import dataclass , asdict
35from typing import Any , AsyncIterator
Original file line number Diff line number Diff line change 1+ from __future__ import annotations
2+
13import asyncio
24import os
35import sys
You can’t perform that action at this time.
0 commit comments