Skip to content

Commit 3897967

Browse files
committed
Task Enable Python3.11
1 parent 28049a6 commit 3897967

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

.github/workflows/build.yml

+1
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

+1
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

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pysubstringsearch"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Gal Ben David <[email protected]>"]
55
edition = "2021"
66
description = "A Python library written in Rust that searches for substrings quickly using a Suffix Array"
@@ -29,6 +29,7 @@ classifier = [
2929
"Programming Language :: Python :: 3.8",
3030
"Programming Language :: Python :: 3.9",
3131
"Programming Language :: Python :: 3.10",
32+
"Programming Language :: Python :: 3.11",
3233
"Programming Language :: Rust",
3334
]
3435

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</p>
99

1010
![license](https://img.shields.io/badge/MIT-License-blue)
11-
![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-blue)
11+
![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)
1212
![Build](https://github.com/Intsights/PySubstringSearch/workflows/Build/badge.svg)
1313
[![PyPi](https://img.shields.io/pypi/v/PySubstringSearch.svg)](https://pypi.org/project/PySubstringSearch/)
1414

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ sdist-include = [
1212

1313
[tool.poetry]
1414
name = "pysubstringsearch"
15-
version = "0.6.0"
15+
version = "0.7.0"
1616
authors = ["Gal Ben David <[email protected]>"]
1717
description = "A Python library written in Rust that searches for substrings quickly using a Suffix Array"
1818
readme = "README.md"
@@ -37,6 +37,7 @@ classifiers = [
3737
"Programming Language :: Python :: 3.8",
3838
"Programming Language :: Python :: 3.9",
3939
"Programming Language :: Python :: 3.10",
40+
"Programming Language :: Python :: 3.11",
4041
"Programming Language :: Rust",
4142
]
4243

0 commit comments

Comments
 (0)