Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add 3.11 for py wheels #4648

Closed
wants to merge 3 commits into from
Closed
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
11 changes: 8 additions & 3 deletions .github/workflows/python_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- { version: "3.8", base_path: /opt/python/cp38-cp38/, include_dir_name: python3.8/ }
- { version: "3.9", base_path: /opt/python/cp39-cp39/, include_dir_name: python3.9/ }
- { version: "3.10", base_path: /opt/python/cp310-cp310/, include_dir_name: python3.10/ }
- { version: "3.11", base_path: /opt/python/cp311-cp311/, include_dir_name: python3.11/ }
fail-fast: false
steps:
# v1 must be used because newer versions require a node.js version that will not run on this old image.
Expand All @@ -58,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v1
Expand Down Expand Up @@ -151,6 +152,7 @@ jobs:
- { version: "3.8", base_path: /opt/python/cp38-cp38/, include_dir_name: python3.8/ }
- { version: "3.9", base_path: /opt/python/cp39-cp39/, include_dir_name: python3.9/ }
- { version: "3.10", base_path: /opt/python/cp310-cp310/, include_dir_name: python3.10/ }
- { version: "3.11", base_path: /opt/python/cp311-cp311/, include_dir_name: python3.11/ }
fail-fast: false
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -185,6 +187,7 @@ jobs:
- { version: "3.8" }
- { version: "3.9" }
- { version: "3.10" }
- { version: "3.11" }
fail-fast: false
env:
py: python${{ matrix.config.version }}
Expand Down Expand Up @@ -231,6 +234,7 @@ jobs:
- { version: 3.8, include_dir_name: python3.8/}
- { version: 3.9, include_dir_name: python3.9/}
- { version: "3.10", include_dir_name: python3.10/}
- { version: "3.11", include_dir_name: python3.11/}
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand All @@ -257,7 +261,7 @@ jobs:
runs-on: macos-11
strategy:
matrix:
version: [3.6, 3.7, 3.8, 3.9, "3.10"]
version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -294,6 +298,7 @@ jobs:
- { version: "3.8", vcpkg_manifest: "python\\vcpkg_default.json", overlay_ports: "python\\vcpkg_python_override_ports\\python38\\" }
- { version: "3.9", vcpkg_manifest: "python\\vcpkg_default.json", overlay_ports: "python\\vcpkg_python_override_ports\\python39\\" }
- { version: "3.10", vcpkg_manifest: "python\\vcpkg_python310.json", overlay_ports: "" }
- { version: "3.11", vcpkg_manifest: "python\\vcpkg_python311.json", overlay_ports: "" }
fail-fast: false
steps:
- uses: actions/setup-python@v2
Expand Down Expand Up @@ -342,7 +347,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
os: ["windows-2019"]
fail-fast: false
steps:
Expand Down