Skip to content

Commit 47b1715

Browse files
authored
Update Python version requirements and dependencies (#671)
1 parent 8fbd94f commit 47b1715

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.github/workflows/lint_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.9", "3.10"]
16+
python-version: ["3.10", "3.11", "3.12"]
1717
steps:
1818
- uses: actions/checkout@v3
1919
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

+4-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "A command-line productivity tool powered by large language models
88
keywords = ["shell", "gpt", "openai", "ollama", "cli", "productivity", "cheet-sheet"]
99
readme = "README.md"
1010
license = "MIT"
11-
requires-python = ">=3.6"
11+
requires-python = ">=3.10"
1212
authors = [{ name = "Farkhod Sadykov", email = "[email protected]" }]
1313
dynamic = ["version"]
1414
classifiers = [
@@ -18,22 +18,18 @@ classifiers = [
1818
"Intended Audience :: Information Technology",
1919
"Intended Audience :: System Administrators",
2020
"Intended Audience :: Developers",
21-
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3 :: Only",
23-
"Programming Language :: Python :: 3.6",
24-
"Programming Language :: Python :: 3.7",
25-
"Programming Language :: Python :: 3.8",
26-
"Programming Language :: Python :: 3.9",
2721
"Programming Language :: Python :: 3.10",
2822
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2925
]
3026
dependencies = [
3127
"openai >= 1.34.0, < 2.0.0",
3228
"typer >= 0.7.0, < 1.0.0",
3329
"click >= 7.1.1, < 9.0.0",
3430
"rich >= 13.1.0, < 14.0.0",
3531
"distro >= 1.8.0, < 2.0.0",
36-
"instructor >= 0.4.5, < 1.0.0",
32+
"instructor >= 1.0.0, < 2.0.0",
3733
'pyreadline3 >= 3.4.1, < 4.0.0; sys_platform == "win32"',
3834
]
3935

0 commit comments

Comments
 (0)