From 92320d3427f989eea622062c9609e106164ec4c7 Mon Sep 17 00:00:00 2001 From: Arjun Manjunath Date: Mon, 21 Jul 2025 11:45:15 +0530 Subject: [PATCH] added support python 3.13 & 3.14 --- .github/workflows/publish.yaml | 10 +++++----- setup.py | 2 +- sqlidps/__init__.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 9e576d6..3cbe1e2 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 @@ -38,7 +38,7 @@ jobs: - name: Repair wheel run: | auditwheel repair dist/*.whl -w dist/ - rm dist/*-linux_x86_64.whl # Remove the unrepaired wheel + rm dist/*-linux_x86_64.whl - name: Upload wheels uses: actions/upload-artifact@v4 @@ -50,7 +50,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 @@ -88,7 +88,7 @@ jobs: runs-on: windows-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 @@ -150,7 +150,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.13" - name: Install build dependencies run: | diff --git a/setup.py b/setup.py index 4a056a1..cdbdf95 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def read_readme(): setup( name="sqlidps", - version="1.2.1", + version="1.2.2", packages=find_packages(), install_requires=["numpy"], ext_modules=[tokenizer_module], diff --git a/sqlidps/__init__.py b/sqlidps/__init__.py index bc014c4..955960f 100644 --- a/sqlidps/__init__.py +++ b/sqlidps/__init__.py @@ -1,4 +1,4 @@ from .inference import * -__version__ = '1.2.1' +__version__ = '1.2.2'