Skip to content
Closed
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/manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
manylinux:
strategy:
matrix:
python_path: [ cp37-cp37m, cp38-cp38, cp39-cp39, cp310-cp310 ]
python_path: [ cp37-cp37m, cp38-cp38, cp39-cp39, cp310-cp310, cp311-cp311 ]
manylinux_image: [ keyvidev/manylinux-builder-x86_64, keyvidev/manylinux-builder-aarch64 ]

runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
os: [ 'macos-latest', 'ubuntu-20.04' ]
include:
# test sdist on ubuntu only
Expand Down
2 changes: 1 addition & 1 deletion docker/manylinux-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN yum -y install bzip2-devel \

ENV ZLIB_MAJOR=1 ZLIB_MINOR=2 ZLIB_PATCH=12

RUN curl https://zlib.net/zlib-${ZLIB_MAJOR}.${ZLIB_MINOR}.${ZLIB_PATCH}.tar.gz --output zlib-${ZLIB_MAJOR}.${ZLIB_MINOR}.${ZLIB_PATCH}.tar.gz && \
RUN curl https://zlib.net/fossils/zlib-${ZLIB_MAJOR}.${ZLIB_MINOR}.${ZLIB_PATCH}.tar.gz --output zlib-${ZLIB_MAJOR}.${ZLIB_MINOR}.${ZLIB_PATCH}.tar.gz && \
tar -xvf zlib-${ZLIB_MAJOR}.${ZLIB_MINOR}.${ZLIB_PATCH}.tar.gz && \
cd zlib-${ZLIB_MAJOR}.${ZLIB_MINOR}.${ZLIB_PATCH} && ./configure && make -j4 && make install && \
cd .. && rm -rf zlib-${ZLIB_MAJOR}.${ZLIB_MINOR}.${ZLIB_PATCH} zlib-${ZLIB_MAJOR}.${ZLIB_MINOR}.${ZLIB_PATCH}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion python/build_macosx_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

for PYTHON_VERSION in "3.8.13" "3.9.11" "3.10.3";
for PYTHON_VERSION in "3.8.13" "3.9.11" "3.10.3" "3.11.1";
do
echo "Building on Python: ${PYTHON_VERSION}"
pyenv install -s "${PYTHON_VERSION}"
Expand Down