Skip to content

Commit

Permalink
2.3.2 - Python 3.12 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
AloneLiberty committed Oct 5, 2023
1 parent 857cdd3 commit 3ff3888
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"],
Expand Down

0 comments on commit 3ff3888

Please sign in to comment.