Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
Fix image order; make 2014 default:
Browse files Browse the repository at this point in the history
2_24 reached EOL (see #51 and pypa/manylinux#1332)
  • Loading branch information
RalfG committed Jul 26, 2022
1 parent ef60f41 commit 3e99073
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/create_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ def main():
version = sys.argv[1]
branch = "rel_" + version
containers = [
"manylinux_2_28_x86_64",
"manylinux_2_28_aarch64",
"manylinux_2_28_ppc64le",
"manylinux_2_24_x86_64",
"manylinux_2_24_i686",
"manylinux_2_24_aarch64",
"manylinux_2_24_ppc64le",
"manylinux_2_24_s390x",
"manylinux2014_x86_64",
"manylinux2014_i686",
"manylinux2014_aarch64",
"manylinux2014_ppc64le",
"manylinux2014_s390x",
"manylinux_2_24_x86_64",
"manylinux_2_24_i686",
"manylinux_2_24_aarch64",
"manylinux_2_24_ppc64le",
"manylinux_2_24_s390x",
"manylinux_2_28_x86_64",
"manylinux_2_28_aarch64",
"manylinux_2_28_ppc64le",
"manylinux2010_x86_64",
"manylinux2010_i686",
"manylinux1_x86_64",
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM quay.io/pypa/manylinux_2_24_x86_64
FROM quay.io/pypa/manylinux2014_x86_64

ENV PLAT manylinux_2_24_x86_64
ENV PLAT manylinux2014_x86_64

COPY entrypoint.sh /entrypoint.sh

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ with:
Using all arguments:

```yaml
uses: RalfG/python-wheels-manylinux-build@v0.4.2-manylinux2014_x86_64
uses: RalfG/python-wheels-manylinux-build@v0.4.2-manylinux2010_x86_64
with:
python-versions: 'cp36-cp36m cp37-cp37m'
build-requirements: 'cython numpy'
Expand Down Expand Up @@ -64,7 +64,7 @@ upload only the `*-manylinux*.whl` wheels, as the non-audited (e.g. `linux_x86_6
wheels are not accepted by PyPI.

### Using a different manylinux container
The `manylinux2010_x86_64` container is used by default. To use another manylinux
The `manylinux2014_x86_64` container is used by default. To use another manylinux
container, append `-<container-name>` to the reference. For example:
`RalfG/python-wheels-manylinux-build@v0.4.2-manylinux2014_aarch64` instead of
`RalfG/python-wheels-manylinux-build@v0.4.2`.
Expand Down

0 comments on commit 3e99073

Please sign in to comment.