Skip to content

Commit 668ed80

Browse files
committed
ci: Drop tests against Python 3.6
This interpreter was provided in the Ubuntu 20.04 package repository, but is not available in Ubuntu 22.04, nor in the Deadsnakes PPA, nor in `python-build-standalone`. Now that we're switching to Ubuntu 22.04, we no longer have any reasonable way to install Python 3.6 remaining to us, so drop these tests. Signed-off-by: Matt Wozniski <[email protected]>
1 parent 3f9a5a4 commit 668ed80

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/build_wheels.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ jobs:
7676
name: ${{ matrix.wheel_type }}-wheels
7777
path: ./wheelhouse/*.whl
7878

79-
test_attaching_to_old_interpreters:
79+
test_attaching_to_eol_interpreters:
8080
needs: [build_wheels]
8181
runs-on: ubuntu-22.04
8282
strategy:
8383
fail-fast: false
8484
matrix:
85-
python_version: ["2.7", "3.6"]
85+
python_version: ["2.7"]
8686
steps:
8787
- uses: actions/checkout@v4
8888
- uses: actions/download-artifact@v4
@@ -92,15 +92,14 @@ jobs:
9292
- name: Set up Python
9393
uses: actions/setup-python@v5
9494
with:
95-
python-version: "3.11"
95+
python-version: '>=3.13'
9696
- name: Set up dependencies
9797
run: |
9898
sudo add-apt-repository ppa:deadsnakes/ppa
9999
sudo apt-get update
100100
sudo apt-get install -qy \
101101
gdb \
102-
python2.7-dev python2.7-dbg \
103-
python3.6-dev python3.6-dbg python3.6-distutils
102+
python2.7-dev python2.7-dbg
104103
- name: Install Python dependencies
105104
run: |
106105
python3 -m pip install --upgrade pip

0 commit comments

Comments
 (0)