Skip to content

Commit e2f3b47

Browse files
committed
fix: update linux -> manylinux_2_24
1 parent bf9659d commit e2f3b47

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- os: macos-latest
4343
platform-tag: py3-none-macosx_15_0_arm64
4444
- os: ubuntu-latest
45-
platform-tag: py3-none-linux_x86_64
45+
platform-tag: py3-none-manylinux_2_24_x86_64
4646
steps:
4747
- name: Checkout
4848
uses: actions/checkout@v4

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ wheels:
5050

5151
.PHONY: install
5252
install:
53-
python -m pip install dist/xspectrampoline-0.1.0-py3-none-linux_x86_64.whl
53+
python -m pip install dist/xspectrampoline-0.1.0-py3-none-manylinux_2_24_x86_64.whl
5454

5555
.PHONY: clean
5656
clean: clean-dist

dist-package.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def repackage(
138138
filename: str,
139139
libxspec: str,
140140
support: str,
141-
platform_tag: str = "py3-none-linux_x86_64",
141+
platform_tag: str = "py3-none-manylinux_2_24_x86_64",
142142
):
143143
# TODO: get the version string from the filename
144144
version = "0.1.0"
@@ -230,7 +230,7 @@ def repackage(
230230

231231
platform_info = [
232232
(
233-
"py3-none-linux_x86_64",
233+
"py3-none-manylinux_2_24_x86_64",
234234
f"LibXSPEC.{LIBXSPEC_VERSION}.x86_64-linux-gnu-libgfortran5",
235235
f"CompilerSupportLibraries.{COMPILER_SUPPORT_VERSION}.x86_64-linux-gnu-libgfortran5",
236236
),

0 commit comments

Comments
 (0)