From 3ff3888c12e9682ac2844c7703a4d5c7541afd68 Mon Sep 17 00:00:00 2001 From: AloneLiberty <111039319+AloneLiberty@users.noreply.github.com> Date: Thu, 5 Oct 2023 11:50:57 +0300 Subject: [PATCH] 2.3.2 - Python 3.12 builds --- .github/workflows/build.yml | 4 ++-- setup.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 896db1e..98f7a13 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,7 @@ jobs: robocopy liblzma\lib\x64 build\lzma /COPYALL /E || true - name: Build wheels - uses: pypa/cibuildwheel@v2.12.1 + uses: pypa/cibuildwheel@v2.16.2 env: CIBW_ARCHS_MACOS: "x86_64 arm64" CIBW_ARCHS_LINUX: "x86_64 aarch64" @@ -55,7 +55,7 @@ jobs: CIBW_BEFORE_BUILD_WINDOWS: "pip install delvewheel" CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair --add-path build\\pthreads;build\\lzma -w {dest_dir} {wheel}" CIBW_BEFORE_ALL_LINUX: "yum install -y xz xz-devel || apk add xz-dev" - CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-*" + CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-*" - uses: actions/upload-artifact@v3 with: diff --git a/setup.py b/setup.py index 493d508..241f7c3 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ with open("README.md", "r") as fh: long_description = fh.read() -setuptools.setup(name="FlipperNested", version="2.3.1", author="AloneLiberty", +setuptools.setup(name="FlipperNested", version="2.3.2", author="AloneLiberty", description="Recover keys from collected nonces", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/AloneLiberty/FlipperNestedRecovery", @@ -42,6 +42,7 @@ packages=["FlipperNested", "FlipperNested.proto"], python_requires=">=3.8", classifiers=["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", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: MacOS", "Operating System :: POSIX :: Linux", "Operating System :: Microsoft :: Windows"],