Skip to content

Commit

Permalink
Support lower Python
Browse files Browse the repository at this point in the history
  • Loading branch information
vietanhdev committed Sep 27, 2024
1 parent a417f2e commit f1fbbc4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.10" # Specify the minimum required Python version
python-version: "3.8" # Specify the minimum required Python version

- name: Install dependencies
run: |
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"

[project]
name = "llama-assistant"
version = "0.1.8"
version = "0.1.10"
authors = [
{name = "Viet-Anh Nguyen", email = "[email protected]"},
]
description = "An AI assistant powered by Llama models"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.8"
keywords = ["AI", "assistant", "Llama", "PyQt6"]
license = {text = "MIT"}
classifiers = [
Expand All @@ -19,6 +19,8 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
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
Expand All @@ -22,7 +24,7 @@ classifiers =
package_dir =
= .
packages = find:
python_requires = >=3.10
python_requires = >=3.8

[options.packages.find]
where = .
Expand Down

0 comments on commit f1fbbc4

Please sign in to comment.