Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to manylinux_2_34_x86_64 and xkbcommon 1.0.1 #225

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
name: Ruff tests
runs-on: ubuntu-24.04
env:
python-version: "3.10"
python-version: "3.12"
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
build-wayland:
name: Build Wayland libraries
runs-on: ubuntu-24.04
container: quay.io/pypa/manylinux_2_28_x86_64
container: quay.io/pypa/manylinux_2_34_x86_64
env:
libdrm-version: "2.4.114"
libdrm-version: "2.4.119"
seatd-version: "0.6.3"
pixman-version: "0.42.0"
xwayland-version: "22.1.9"
Expand All @@ -22,6 +22,7 @@ jobs:
steps:
- name: Install dependencies
run: |
dnf -y install almalinux-release-devel
yum -y install \
hwdata \
python3-pip \
Expand Down Expand Up @@ -161,7 +162,7 @@ jobs:
build-wheel-cpython:
name: Build CPython wheels
runs-on: ubuntu-24.04
container: quay.io/pypa/manylinux_2_28_x86_64
container: quay.io/pypa/manylinux_2_34_x86_64
needs: build-wayland
strategy:
fail-fast: false
Expand Down Expand Up @@ -203,7 +204,7 @@ jobs:
python -m build --wheel
ls dist/
auditwheel show dist/pywlroots-*.whl
auditwheel repair --plat manylinux_2_28_x86_64 -w output_wheels dist/pywlroots-*.whl
auditwheel repair --plat manylinux_2_34_x86_64 -w output_wheels dist/pywlroots-*.whl
env:
PIP_CONSTRAINT: dist-build-constraints.txt
- name: Upload wheel
Expand All @@ -214,7 +215,7 @@ jobs:
build-wheel-pypy:
name: Build PyPy wheels
runs-on: ubuntu-24.04
container: quay.io/pypa/manylinux_2_28_x86_64
container: quay.io/pypa/manylinux_2_34_x86_64
needs: build-wayland
strategy:
fail-fast: false
Expand Down Expand Up @@ -260,7 +261,7 @@ jobs:
python -m build --wheel
ls dist/
auditwheel show dist/pywlroots-*.whl
auditwheel repair --plat manylinux_2_28_x86_64 -w output_wheels dist/pywlroots-*.whl
auditwheel repair --plat manylinux_2_34_x86_64 -w output_wheels dist/pywlroots-*.whl
env:
PIP_CONSTRAINT: dist-build-constraints.txt
- name: Upload wheel
Expand Down Expand Up @@ -312,7 +313,7 @@ jobs:
build-source:
name: Build source package
runs-on: ubuntu-24.04
container: quay.io/pypa/manylinux_2_28_x86_64
container: quay.io/pypa/manylinux_2_34_x86_64
needs: build-wayland
env:
python-version: "3.12"
Expand Down
2 changes: 1 addition & 1 deletion dist-build-constraints.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
xkbcommon<1.0
xkbcommon<1.5
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Desktop Environment :: Window Managers",
Expand Down
Loading