diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e49c7eb1..f5d145b8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/setup-python@v3 - name: Install cibuildwheel - run: python -m pip install cibuildwheel==2.21.3 + run: python -m pip install cibuildwheel==3.2.0 - name: Build wheels env: diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index ab0d9035..1a72c193 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - pyver: ["3.8", "3.9", "3.10", "3.11", "3.12"] + pyver: ["3.10", "3.11", "3.12", "3.13", "3.14"] compiler: ["gcc", "clang"] build_type: ["Debug", "Release"] @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - pyver: ["3.8", "3.9", "3.10", "3.11", "3.12"] + pyver: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v2 diff --git a/libmc/__init__.py b/libmc/__init__.py index dbe87c89..6fdc4ebe 100644 --- a/libmc/__init__.py +++ b/libmc/__init__.py @@ -33,8 +33,8 @@ __file__ as _libmc_so_file ) -__VERSION__ = "1.4.13" -__version__ = "1.4.13" +__VERSION__ = "1.4.14" +__version__ = "1.4.14" __author__ = "mckelvin" __email__ = "mckelvin@users.noreply.github.com" __date__ = "Fri Jun 7 06:16:00 2024 +0800" diff --git a/setup.py b/setup.py index 3f9cf2f7..224ae135 100644 --- a/setup.py +++ b/setup.py @@ -86,12 +86,12 @@ def find_version(*file_paths): classifiers=[ "Programming Language :: C++", "Programming Language :: Python", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "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 :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: Implementation :: CPython", "Development Status :: 5 - Production/Stable", "Operating System :: POSIX :: Linux", diff --git a/src/version.go b/src/version.go index b6af33c1..bcfe7ed6 100644 --- a/src/version.go +++ b/src/version.go @@ -1,6 +1,6 @@ package golibmc -const _Version = "1.4.13" +const _Version = "1.4.14" const _Author = "mckelvin" const _Email = "mckelvin@users.noreply.github.com" const _Date = "Fri Jun 7 06:16:00 2024 +0800"