Skip to content

Commit 21992de

Browse files
Drop supporting Python 3.8
1 parent ddb745a commit 21992de

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/test-linux.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
- "3.11"
3030
- "3.10"
3131
- "3.9"
32-
- "3.8"
3332
steps:
3433
- name: Checkout code
3534
uses: actions/checkout@v4.2.2

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# CHANGES
22

3-
## 0.4.3 (2025-08-02)
3+
## 0.4.3.1 (2025-08-02)
44

55
- Resolve mecabrc not found issue
66
- Support Python 3.12, 3.13
7+
- Drop supporting Python 3.8
78
- Migrate packaging solution from setup.py to pyproject.toml
89

910
## 0.4.2 (2023-02-19)

oseti/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
from .oseti import Analyzer
33

4-
VERSION = (0, 4, 3)
5-
__version__ = '0.4.3'
4+
VERSION = (0, 4, 3, 1)
5+
__version__ = '0.4.3.1'
66
__all__ = ['Analyzer']

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ classifiers = [
2626
"License :: OSI Approved :: MIT License",
2727
"Programming Language :: Python",
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",
3231
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)