Skip to content

Commit

Permalink
Bump version of external libraries (closes PyTables#967)
Browse files Browse the repository at this point in the history
* hdf5 v1.14.1
* lz4 v1.9.4
* zlib v1.2.13
  • Loading branch information
avalentino committed May 20, 2023
1 parent f985028 commit be97069
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Expand Up @@ -56,7 +56,7 @@ jobs:
name: Build ${{ matrix.os }} wheels for ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
env:
HDF5_VERSION: 1.14.0 # needed for H5Dchunk_iter
HDF5_VERSION: 1.14.1-2 # needed for H5Dchunk_iter
MACOSX_DEPLOYMENT_TARGET: "10.9"
# Skip 3.6 and 3.7 wheels
CIBW_SKIP: "*-musllinux_* cp36-* cp37-*"
Expand Down
6 changes: 3 additions & 3 deletions ci/github/get_hdf5.sh
Expand Up @@ -18,9 +18,9 @@ export PKG_CONFIG_PATH="$HDF5_DIR/lib/pkgconfig:${PKG_CONFIG_PATH}"

LZO_VERSION="2.10"
ZSTD_VERSION="1.5.2"
LZ4_VERSION="1.9.3"
LZ4_VERSION="1.9.4"
BZIP_VERSION="1.0.8"
ZLIB_VERSION="1.2.12"
ZLIB_VERSION="1.2.13"


echo "building HDF5"
Expand Down Expand Up @@ -105,7 +105,7 @@ fi
pushd /tmp

# Remove trailing .*, to get e.g. '1.12' ↓
curl -fsSLO "https://www.hdfgroup.org/ftp/HDF5/releases/hdf5-${HDF5_VERSION%.*}/hdf5-$HDF5_VERSION/src/hdf5-$HDF5_VERSION.tar.gz"
curl -fsSLO "https://www.hdfgroup.org/ftp/HDF5/releases/hdf5-${HDF5_VERSION%.*}/hdf5-${HDF5_VERSION%-*}/src/hdf5-${HDF5_VERSION}.tar.gz"
tar -xzvf "hdf5-$HDF5_VERSION.tar.gz"
pushd "hdf5-$HDF5_VERSION"

Expand Down

0 comments on commit be97069

Please sign in to comment.