Skip to content

Commit 750ac2d

Browse files
committed
Fix build
1 parent 4b056c1 commit 750ac2d

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-python@v5
2121
with:
22-
python-version: "3.9" # Specify the minimum required Python version
22+
python-version: "3.10" # Specify the minimum required Python version
2323

2424
- name: Install dependencies
2525
run: |

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[![Llama Assistant](https://user-images.githubusercontent.com/18329471/234640541-a6a65fbc-d7a5-4ec3-9b65-55305b01a7aa.png)](https://www.youtube.com/watch?v=kyRf8maKuDc)
99

10-
![Python](https://img.shields.io/badge/python-3.9%2B-blue.svg)
10+
![Python](https://img.shields.io/badge/python-3.10%2B-blue.svg)
1111
![Llama 3](https://img.shields.io/badge/Llama-3-green.svg)
1212
![DeepSeek](https://img.shields.io/badge/DeepSeek-R1-blue.svg)
1313
![License](https://img.shields.io/badge/license-MIT-orange.svg)
@@ -83,7 +83,7 @@ https://github.com/user-attachments/assets/af2c544b-6d46-4c44-87d8-9a051ba213db
8383

8484
## Technologies Used
8585

86-
- ![Python](https://img.shields.io/badge/Python-3.9%2B-blue?style=flat-square&logo=python&logoColor=white)
86+
- ![Python](https://img.shields.io/badge/Python-3.10%2B-blue?style=flat-square&logo=python&logoColor=white)
8787
- ![Llama](https://img.shields.io/badge/Llama-3.2-yellow?style=flat-square&logo=meta&logoColor=white)
8888
- ![SpeechRecognition](https://img.shields.io/badge/SpeechRecognition-3.8-green?style=flat-square&logo=google&logoColor=white)
8989
- ![yt](https://img.shields.io/badge/PyQt-5-41CD52?style=flat-square&logo=qt&logoColor=white)

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "llama-assistant"
7-
version = "0.1.42"
7+
version = "0.1.43"
88
authors = [
99
{name = "Viet-Anh Nguyen", email = "vietanh.dev@gmail.com"},
1010
]
1111
description = "An AI assistant powered by Llama models"
1212
readme = "README.md"
13-
requires-python = ">=3.9"
13+
requires-python = ">=3.10"
1414
keywords = ["AI", "assistant", "Llama", "PyQt6"]
1515
license = {text = "MIT"}
1616
classifiers = [
@@ -19,7 +19,6 @@ classifiers = [
1919
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2020
"Operating System :: OS Independent",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)