diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c2db8fc0..d5d186a70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: matrix: runs-on: [ubuntu-20.04, windows-2022, macos-13] python: - - '3.6' + - '3.8' - '3.9' - '3.12' - '3.13' @@ -48,7 +48,7 @@ jobs: include: # Just add a key - runs-on: ubuntu-20.04 - python: '3.6' + python: '3.8' args: > -DPYBIND11_FINDPYTHON=ON -DCMAKE_CXX_FLAGS="-D_=1" @@ -57,7 +57,7 @@ jobs: args: > -DPYBIND11_FINDPYTHON=ON - runs-on: windows-2019 - python: '3.6' + python: '3.8' args: > -DPYBIND11_FINDPYTHON=ON # Inject a couple Windows 2019 runs @@ -82,7 +82,7 @@ jobs: - name: Setup Boost (Linux) # Can't use boost + define _ - if: runner.os == 'Linux' && matrix.python != '3.6' + if: runner.os == 'Linux' run: sudo apt-get install libboost-dev - name: Setup Boost (macOS) @@ -811,7 +811,6 @@ jobs: fail-fast: false matrix: python: - - 3.6 - 3.7 - 3.8 - 3.9 diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index 19baf57d9..9aad8df88 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -21,19 +21,18 @@ env: jobs: # This builds the sdists and wheels and makes sure the files are exactly as - # expected. Using Windows and Python 3.6, since that is often the most - # challenging matrix element. + # expected. test-packaging: - name: 🐍 3.6 • 📦 tests • windows-latest + name: 🐍 3.8 • 📦 tests • windows-latest runs-on: windows-latest steps: - uses: actions/checkout@v4 - - name: Setup 🐍 3.6 + - name: Setup 🐍 3.8 uses: actions/setup-python@v5 with: - python-version: 3.6 + python-version: 3.8 - name: Prepare env run: |