From 1d4e3667e9eb2231a1dce826cf50d81cb0f39fe5 Mon Sep 17 00:00:00 2001 From: michael-lerner Date: Tue, 17 Jan 2023 12:38:39 +0200 Subject: [PATCH 1/3] Upgrade to python3.11 --- .github/workflows/build.yml | 2 +- .github/workflows/deploy.yml | 2 +- Cargo.toml | 3 ++- pyproject.toml | 14 +++++++++++++- 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e85abd4..a15c894 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'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] os: [ubuntu-latest , macos-latest, windows-latest] steps: - name: Checkout diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0952f55..c339f2e 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'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] os: [ubuntu-latest, macos-latest, windows-latest] steps: - name: Checkout diff --git a/Cargo.toml b/Cargo.toml index e2e350b..55b6389 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "PyDeduplines" -version = "0.5.0" +version = "0.6.0" authors = ["Gal Ben David "] edition = "2021" description = "Python library for a duplicate lines removal written in Rust" @@ -23,6 +23,7 @@ classifier = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ] [lib] diff --git a/pyproject.toml b/pyproject.toml index 9fe87a5..f9cc6da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ sdist-include = [ [tool.poetry] name = "PyDeduplines" -version = "0.5.0" +version = "0.6.0" authors = ["Gal Ben David "] description = "Python library for a duplicate lines removal written in Rust" readme = "README.md" @@ -32,3 +32,15 @@ pytest = "*" wheel = "*" pytest-runner = "*" maturin = "*" +classifiers = [ + "License :: OSI Approved :: MIT License", + "Operating System :: MacOS", + "Operating System :: Microsoft", + "Operating System :: POSIX :: Linux", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Rust", +] From 51fcbfd7a072392d98cdb01ed47c8a84e0e77552 Mon Sep 17 00:00:00 2001 From: michael-lerner Date: Tue, 17 Jan 2023 12:44:33 +0200 Subject: [PATCH 2/3] Removed rust from languges --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f9cc6da..a3b8dc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,5 +42,4 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", - "Programming Language :: Rust", ] From ddecc2b8324998fdcf84c830948571f5e951f907 Mon Sep 17 00:00:00 2001 From: michael-lerner Date: Tue, 17 Jan 2023 12:53:12 +0200 Subject: [PATCH 3/3] Removed classfires --- pyproject.toml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a3b8dc6..3c24b6c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,14 +32,3 @@ pytest = "*" wheel = "*" pytest-runner = "*" maturin = "*" -classifiers = [ - "License :: OSI Approved :: MIT License", - "Operating System :: MacOS", - "Operating System :: Microsoft", - "Operating System :: POSIX :: Linux", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", -]