Skip to content

Commit

Permalink
moving back to manylinux2014
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathf committed Jun 26, 2024
1 parent b03aac1 commit 93818e2
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- uses: pypa/[email protected]
env:
MACOSX_DEPLOYMENT_TARGET: 10.14
CIBW_BUILD: '*cp311*'
CIBW_BUILD: '*cp39*'

- name: Verify clean directory
run: git diff --exit-code
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 @@ -20,7 +20,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.9"

- name: "Install system dependencies"
run: sudo apt update -y && sudo apt install -y libssl-dev libasio-dev
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ jobs:
conan config set "storage.path=$env:GITHUB_WORKSPACE/conan_data"
conan install --build=openssl --install-folder conan_build .
# - name: Set up QEMU
# if: matrix.platform == 'linux'
# uses: docker/setup-qemu-action@v3
# with:
# platforms: all
- name: Set up QEMU
if: matrix.platform == 'linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Build wheels
if: matrix.platform != 'macos-arm'
Expand Down
8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,14 @@ Installation
Pyvroom currently makes binaries for on macOS and Linux. There is also a
Windows build that can be used, but it is somewhat experimental.

The current minimal requirements are as follows:

* Python version 3.9.
* MacOS 13 for Intel x86_64 and Rosetta and MacOS 14 for Apple Silicon (M1, M2, etc.).
* x86_64 for both Linux and Windows.

Outside this it might be possible to build your own binaries.

Installation of the pre-compiled releases should be as simple as:

.. code:: bash
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ test-command = 'python -c "import vroom"'
build = "cp3{9,10,11,12}-*"
skip = "*musllinux*"
archs = "native"
manylinux-x86_64-image = "quay.io/pypa/manylinux_2_28_x86_64"

[tool.cibuildwheel.linux]
before-all = """
yum module enable mariadb-devel:10.3
yum install -y openssl-devel asio
dnf update -y
dnf module enable -y mariadb-devel
dnf install -y openssl-devel asio-devel
"""
# archs = ["auto", "aarch64"]
archs = ["auto", "aarch64"]

[[tool.cibuildwheel.overrides]]
select = "*musllinux*"
Expand Down

0 comments on commit 93818e2

Please sign in to comment.