Skip to content

Commit

Permalink
chore: build wheels for CPython 3.12 (#31)
Browse files Browse the repository at this point in the history
* chore: build wheels for CPython 3.12
build wheels for CPython 3.12 and update libfranka 13 to 0.13.3.

* fix: poco default branch renamed

* chore: build only newest FR3 libfranka binaries
  • Loading branch information
JeanElsner authored May 21, 2024
1 parent ca833c2 commit a16a5bb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
libfranka-version: ["0.7.1", "0.8.0", "0.9.2", "0.10.0", "0.11.0", "0.12.1", "0.13.2"]
libfranka-version: ["0.7.1", "0.8.0", "0.9.2", "0.13.3"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
libfranka-version: ["0.7.1", "0.8.0", "0.9.2", "0.10.0", "0.11.0", "0.12.1", "0.13.2"]
libfranka-version: ["0.7.1", "0.8.0", "0.9.2", "0.13.3"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
libfranka-version: ["0.7.1", "0.8.0", "0.9.2", "0.10.0", "0.11.0", "0.12.1", "0.13.2"]
libfranka-version: ["0.7.1", "0.8.0", "0.9.2", "0.13.3"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
libfranka-version: ["0.7.1", "0.8.0", "0.9.2", "0.10.0", "0.11.0", "0.12.1", "0.13.2"]
libfranka-version: ["0.7.1", "0.8.0", "0.9.2", "0.13.3"]
steps:
- uses: actions/download-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion bin/before_install_centos.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /bin/bash

yum install -y openssl-devel
git clone -b master https://github.com/pocoproject/poco.git
git clone https://github.com/pocoproject/poco.git
cd poco
git checkout poco-1.9.2-release # focal, jammy uses 1.11.0
mkdir cmake-build
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

[project.optional-dependencies]
Expand All @@ -47,7 +48,7 @@ panda-reboot = "panda_py.cli:reboot"

[tool.cibuildwheel]
manylinux-x86_64-image = "manylinux2014"
build = [ "cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*",]
build = [ "cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*",]
skip = [ "pp*", "*musllinux*",]
environment = "LIBFRANKA_VER=0.9.2"

Expand Down

0 comments on commit a16a5bb

Please sign in to comment.