Skip to content

Commit

Permalink
python 3.12 in a separate build
Browse files Browse the repository at this point in the history
  • Loading branch information
stfbnc committed Nov 18, 2023
1 parent d3e780d commit a6c69f1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ environment:
python -m pip install -r requirements.txt
matrix:
#- CIBW_BUILD: "cp38-win_amd64"
#- CIBW_BUILD: "cp39-win_amd64"
#- CIBW_BUILD: "cp310-win_amd64"
#- CIBW_BUILD: "cp311-win_amd64"
- CIBW_BUILD: "cp312-win_amd64"
- CIBW_BUILD: "cp38-win_amd64"
- CIBW_BUILD: "cp39-win_amd64"
- CIBW_BUILD: "cp310-win_amd64"
- CIBW_BUILD: "cp311-win_amd64"
#- CIBW_BUILD: "cp312-win_amd64"

stack: python 3.8

Expand Down Expand Up @@ -52,7 +52,7 @@ build_script:
- "python -m twine --version"
- "python -m cibuildwheel --output-dir wheelhouse"
- dir wheelhouse
- ps: .\upload_test_wheels.ps1
#- ps: .\upload_test_wheels.ps1

after_build:
- 7z a wheels.zip %APPVEYOR_BUILD_FOLDER%\wheelhouse\*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
pip3 install --upgrade pip &&
pip3 install Cython &&
pip3 install -r requirements.txt
CIBW_BUILD: "cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux* cp312-manylinux*"
CIBW_BUILD: "cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux*"
CIBW_SKIP: "*-manylinux_i686"
CIBW_ARCHS_LINUX: "x86_64"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
pip3 install --upgrade pip &&
pip3 install Cython &&
pip3 install -r requirements.txt
CIBW_BUILD: "cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux* cp312-manylinux*"
CIBW_BUILD: "cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux*"
CIBW_SKIP: "*-manylinux_i686"
CIBW_ARCHS_LINUX: "aarch64"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
pip3 install Cython &&
pip3 install setuptools &&
pip3 install -r requirements.txt
CIBW_BUILD: "cp38-macosx_x86_64 cp39-macosx_x86_64 cp310-macosx_x86_64 cp311-macosx_x86_64 cp312-macosx_x86_64"
CIBW_BUILD: "cp38-macosx_x86_64 cp39-macosx_x86_64 cp310-macosx_x86_64 cp311-macosx_x86_64"
CIBW_ARCHS_MACOS: "x86_64"

- name: Show files
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ It is mostly written in Cython and C in order to speed up computations.
### Prerequisites

- Python 3.8 or higher
- numpy (version >= 1.24.4)
- numpy (version >= 1.24.4 for Python < 3.12, version >= 1.26.2 for Python >= 3.12)

### Installing

Expand Down

0 comments on commit a6c69f1

Please sign in to comment.