Skip to content

Commit a2f98d6

Browse files
Enable python 3.11
2 parents eb097b0 + 0ab0d8d commit a2f98d6

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
- '3.8'
3333
- '3.9'
3434
- '3.10'
35+
- '3.11'
3536
os:
3637
- ubuntu-latest
3738
- macos-latest

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- '3.8'
1515
- '3.9'
1616
- '3.10'
17+
- '3.11'
1718
os:
1819
- ubuntu-latest
1920
- macos-latest

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pywordsegment"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Gal Ben David <gal@intsights.com>"]
55
edition = "2021"
66
description = "Concatenated-word segmentation Python library written in Rust"
@@ -26,6 +26,7 @@ classifier = [
2626
"Programming Language :: Python :: 3.8",
2727
"Programming Language :: Python :: 3.9",
2828
"Programming Language :: Python :: 3.10",
29+
"Programming Language :: Python :: 3.11",
2930
"Programming Language :: Rust",
3031
]
3132

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
![license](https://img.shields.io/badge/MIT-License-blue)
12-
![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-blue)
12+
![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)
1313
![OS](https://img.shields.io/badge/OS-Mac%20%7C%20Linux%20%7C%20Windows-blue)
1414
![Build](https://github.com/intsights/pywordsegment/workflows/Build/badge.svg)
1515
[![PyPi](https://img.shields.io/pypi/v/pywordsegment.svg)](https://pypi.org/project/pywordsegment/)

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ sdist-include = [
1414

1515
[tool.poetry]
1616
name = "pywordsegment"
17-
version = "0.3.0"
17+
version = "0.4.0"
1818
authors = ["Gal Ben David <gal@intsights.com>"]
1919
description = "Concatenated-word segmentation Python library written in Rust"
2020
readme = "README.md"
@@ -36,6 +36,7 @@ classifiers = [
3636
"Programming Language :: Python :: 3.8",
3737
"Programming Language :: Python :: 3.9",
3838
"Programming Language :: Python :: 3.10",
39+
"Programming Language :: Python :: 3.11",
3940
"Programming Language :: Rust",
4041
]
4142

0 commit comments

Comments
 (0)