diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3490762..9834a75 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] os: [ubuntu-latest , macos-latest, windows-latest] steps: - name: Checkout diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c339f2e..a5a20af 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] os: [ubuntu-latest, macos-latest, windows-latest] steps: - name: Checkout diff --git a/Cargo.toml b/Cargo.toml index ce6497c..a4c2a00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastzy" -version = "0.5.0" +version = "0.6.0" authors = ["Gal Ben David "] edition = "2021" description = "Python library for fast fuzzy search over a big file written in Rust" @@ -26,6 +26,7 @@ classifier = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Rust", ] diff --git a/README.md b/README.md index 9d83036..58c3b47 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@

![license](https://img.shields.io/badge/MIT-License-blue) -![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) +![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%20%7C%203.12-blue) ![Build](https://github.com/Intsights/fastzy/workflows/Build/badge.svg) [![PyPi](https://img.shields.io/pypi/v/fastzy.svg)](https://pypi.org/project/fastzy/) diff --git a/pyproject.toml b/pyproject.toml index 13b8e11..f4fb784 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ sdist-include = [ [tool.poetry] name = "fastzy" -version = "0.5.0" +version = "0.6.0" authors = ["Gal Ben David "] description = "Python library for fast fuzzy search over a big file written in Rust" readme = "README.md" @@ -34,6 +34,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Rust", ]