Skip to content

Commit e58f3ad

Browse files
authored
Manylinux fix (#212)
* Fix docker tag for manylinux * Updated changelog
1 parent 4b77159 commit e58f3ad

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Changelog.rst

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ Packaging
2323
* Added binary wheels for Python versions 3.11, 3.12 and 3.13 on support manylinux wheel builds.
2424
* Added OSX 12.0, 13.0 and 14.0 wheels, Apple Silicon.
2525
* Support OSX brew OpenSSL from source builds.
26+
* Top level tests directory is now cross platform and can be run by vendors.
27+
* Moved CI specific integration tests to their own space.
2628

2729

2830
1.0.0

ci/build-manylinux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if [[ $(uname -m) == "aarch64" ]]; then
2727
fi
2828

2929
for docker_file in "${docker_files[@]}"; do
30-
if [[ ${docker_file} == "ci/docker/manylinux/Dockerfile_2014_x86_64" ]]; then
30+
if [[ ${docker_file} == "ci/docker/manylinux/Dockerfile.2014_x86_64" ]]; then
3131
docker_tag="${docker_tag}:2014_x86_64"
3232
fi
3333
docker pull $docker_tag || echo

0 commit comments

Comments
 (0)