Skip to content

Commit 732ea7b

Browse files
committed
updating python min version pyproject
1 parent 70e37ce commit 732ea7b

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131

3232
python: ["cp39", "cp310", "cp311", "cp312", "cp313", "cp314", "pp311"]
3333
# PyPy is not supported for musllinux, win32 and windows arm64
34-
# CPython 3.8 is not supported on windows arm64
3534
exclude:
3635
- buildplat: [windows-11-arm, win_arm64]
3736
python: "pp311"

.github/workflows/publish_pypi.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333

3434
python: ["cp39", "cp310", "cp311", "cp312", "cp313", "cp314", "pp311"]
3535
# PyPy is not supported for musllinux, win32 and windows arm64
36-
# CPython 3.8 is not supported on windows arm64
3736
exclude:
3837
- buildplat: [windows-11-arm, win_arm64]
3938
python: "pp311"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Python 3.8](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/release/)
1+
[![Python 3.9](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/release/)
22
[![GitHub CI](https://github.com/Natooz/LCSvec/actions/workflows/tests.yml/badge.svg)](https://github.com/Natooz/LCSvec/actions/workflows/tests.yml)
33
[![GitHub license](https://img.shields.io/github/license/Natooz/LCSvec.svg)](https://github.com/Natooz/LCSvec/blob/main/LICENSE)
44
[![Downloads](https://static.pepy.tech/badge/lcsvec)](https://pepy.tech/project/lcsvec)

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "scikit_build_core.build"
1010

1111
[project]
1212
name = "lcsvec"
13-
requires-python = ">=3.8"
13+
requires-python = ">=3.9"
1414
authors = [
1515
{name = "Nathan Fradet"}
1616
]
@@ -30,11 +30,12 @@ classifiers = [
3030
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3131
"License :: OSI Approved :: Apache Software License",
3232
"Programming Language :: Python :: 3 :: Only",
33-
"Programming Language :: Python :: 3.8",
3433
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",
3635
"Programming Language :: Python :: 3.11",
3736
"Programming Language :: Python :: 3.12",
37+
"Programming Language :: Python :: 3.13",
38+
"Programming Language :: Python :: 3.14",
3839
"Operating System :: MacOS",
3940
"Operating System :: Microsoft :: Windows",
4041
"Operating System :: POSIX",
@@ -80,7 +81,7 @@ filterwarnings = [
8081
testpaths = ["tests"]
8182

8283
[tool.ruff]
83-
target-version = "py38"
84+
target-version = "py39"
8485
exclude = ["ext"]
8586

8687
[tool.ruff.lint]

0 commit comments

Comments
 (0)