Skip to content

Commit 39b9e2d

Browse files
committed
dropped support of python 3.8, added python 3.13 version as supported
1 parent 78d1f22 commit 39b9e2d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/package-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10", "3.11"]
10+
python-version: ["3.9", "3.13"]
1111
steps:
1212
- uses: actions/checkout@v4
1313
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "bitermplus"
77
dynamic = ["version"]
88
description = "Biterm Topic Model with sklearn-compatible API"
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
license-files = ["LICENSE"]
1212
authors = [
1313
{ name = "Maksim Terpilovskii", email = "[email protected]" },
@@ -30,11 +30,11 @@ classifiers = [
3030
"Intended Audience :: Science/Research",
3131
"Operating System :: OS Independent",
3232
"Programming Language :: Python :: 3",
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",
3838
"Programming Language :: Cython",
3939
"Topic :: Scientific/Engineering :: Artificial Intelligence",
4040
"Topic :: Scientific/Engineering :: Information Analysis",

0 commit comments

Comments
 (0)