Skip to content

Commit

Permalink
Testing 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
tfmoraes committed Aug 5, 2024
1 parent ebea386 commit a0f3ebb
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
- os: windows-2019
python: 312
platform_id: win32
- os: windows-2019
python: 313
platform_id: win32

# Windows 64-bit
- os: windows-2019
Expand All @@ -49,6 +52,9 @@ jobs:
- os: windows-2019
python: 312
platform_id: win_amd64
- os: windows-2019
python: 313
platform_id: win_amd64

# Linux 32-bit
- os: ubuntu-latest
Expand All @@ -69,6 +75,9 @@ jobs:
- os: ubuntu-latest
python: 312
platform_id: manylinux_i686
- os: ubuntu-latest
python: 313
platform_id: manylinux_i686

# Linux 64-bit
- os: ubuntu-latest
Expand All @@ -89,6 +98,9 @@ jobs:
- os: ubuntu-latest
python: 312
platform_id: manylinux_x86_64
- os: ubuntu-latest
python: 313
platform_id: manylinux_x86_64

# Linux aarch64
- os: ubuntu-latest
Expand All @@ -109,6 +121,9 @@ jobs:
- os: ubuntu-latest
python: 312
platform_id: manylinux_aarch64
- os: ubuntu-latest
python: 313
platform_id: manylinux_aarch64

# macOS on Intel 64-bit
- os: macos-latest
Expand All @@ -135,6 +150,10 @@ jobs:
python: 312
arch: x86_64
platform_id: macosx_x86_64
- os: macos-latest
python: 313
arch: x86_64
platform_id: macosx_x86_64

# macOS on Apple M1 64-bit
- os: macos-latest
Expand All @@ -157,6 +176,10 @@ jobs:
python: 312
arch: arm64
platform_id: macosx_arm64
- os: macos-latest
python: 313
arch: arm64
platform_id: macosx_arm64

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -229,7 +252,7 @@ jobs:
pushd c:\
git clone https://github.com/openssl/openssl.git
pushd openssl
git checkout openssl-3.3.0
git checkout openssl-3.3.1
perl Configure no-shared no-tests VC-WIN32
nmake
mkdir lib\VC
Expand All @@ -244,15 +267,15 @@ jobs:
pushd /tmp
git clone https://github.com/openssl/openssl.git
pushd openssl
git checkout openssl-3.3.0
git checkout openssl-3.3.1
./Configure --prefix=/usr/local/openssl no-tests darwin64-${{ matrix.arch }}-cc
make
sudo make install
popd
popd
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.17.0
run: python -m pip install cibuildwheel==2.20.0

- name: Build wheels
# to supply options, put them in 'env', like:
Expand Down

0 comments on commit a0f3ebb

Please sign in to comment.