Skip to content

Commit

Permalink
Merge pull request #25 from terrierteam/py311
Browse files Browse the repository at this point in the history
python 3.11 build
  • Loading branch information
seanmacavaney authored Jul 8, 2024
2 parents 0bb1ff6 + 5beda15 commit 5cf63ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
CIBW_BEFORE_BUILD: "python -m pip install numpy setuptools scikit-build ninja cmake -v"
CIBW_BUILD_VERBOSITY: '1'
CIBW_ARCHS_LINUX: "x86_64"
# Only supports cpython 3.8 - 3.10 on manylinux_x86_64
CIBW_BUILD: 'cp38-manylinux_x86_64 cp39-manylinux_x86_64 cp310-manylinux_x86_64'
# Only supports cpython 3.8 - 3.11 on manylinux_x86_64
CIBW_BUILD: 'cp38-manylinux_x86_64 cp39-manylinux_x86_64 cp310-manylinux_x86_64 cp311-manylinux_x86_64'
CIBW_REPAIR_WHEEL_COMMAND: 'auditwheel repair -w {dest_dir} {wheel} ; python patcher.py {dest_dir}'
CIBW_ENVIRONMENT: 'PT_PISA_VERSION_SUFFIX="${{github.event.inputs.version_suffix}}" PT_PISA_MANYLINUX="True"'
- name: upload Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11']
name: [ubuntu-gcc-9]
java: [13]
architecture: ['x64']
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Interactive Colab Demo: [![Open In Colab](https://colab.research.google.com/asse

## Getting Started

These bindings are only available for cpython 3.7-3.10 on `manylinux2010_x86_64` platforms. They can be installed via pip:
These bindings are only available for cpython 3.8-3.11 on `manylinux2010_x86_64` platforms. They can be installed via pip:

```bash
pip install pyterrier_pisa
Expand Down

0 comments on commit 5cf63ca

Please sign in to comment.