Skip to content

Commit 6039619

Browse files
committed
Update actions
1 parent ce85ca0 commit 6039619

File tree

2 files changed

+12
-19
lines changed

2 files changed

+12
-19
lines changed

.github/workflows/dist.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,24 +80,17 @@ jobs:
8080
CIBW_BUILD: ${{ matrix.buildplat[2] }}
8181
run: python -m cibuildwheel --output-dir wheelhouse
8282

83-
- name: Build manylinux1 wheels
84-
if: ${{ matrix.buildplat[1] == 'manylinux_x86_64' || matrix.buildplat[1] == 'manylinux_i686' }}
85-
env:
86-
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
87-
CIBW_MANYLINUX_I686_IMAGE: manylinux1
88-
CIBW_BUILD: "cp39-${{ matrix.buildplat[1] }} cp39-${{ matrix.buildplat[1] }}"
89-
run: python -m cibuildwheel --output-dir wheelhouse
90-
9183
- name: Assert all versions in wheelhouse
9284
if: ${{ ! startsWith(matrix.buildplat[1], 'macos') }}
9385
run: |
94-
ls wheelhouse/*cp39*.whl
9586
ls wheelhouse/*cp310*.whl
9687
ls wheelhouse/*cp311*.whl
9788
ls wheelhouse/*cp312*.whl
9889
ls wheelhouse/*cp313*.whl
90+
ls wheelhouse/*cp314*.whl
9991
# Free-threading builds:
10092
ls wheelhouse/*cp313t*.whl
93+
ls wheelhouse/*cp314t*.whl
10194
10295
- uses: actions/upload-artifact@v4
10396
with:
@@ -118,7 +111,7 @@ jobs:
118111
- uses: actions/setup-python@v6
119112
with:
120113
# Build sdist on lowest supported Python
121-
python-version: '3.9'
114+
python-version: "3.10"
122115

123116
- name: Build SDist
124117
run: |

.github/workflows/test-python.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v5
2727
with:
2828
enable-cache: true
29-
python-version: "3.9"
29+
python-version: "3.10"
3030
- name: Install just
3131
run: uv tool install rust-just
3232
- name: Install Python dependencies
@@ -56,7 +56,7 @@ jobs:
5656
matrix:
5757
# Tests currently only pass on ubuntu on GitHub Actions.
5858
os: [ubuntu-latest]
59-
python-version: ["3.9", "pypy-3.10", "3.13t"]
59+
python-version: ["3.10", "pypy-3.10", "3.13t"]
6060
mongodb-version: ["8.0"]
6161

6262
name: CPython ${{ matrix.python-version }}-${{ matrix.os }}
@@ -87,7 +87,7 @@ jobs:
8787
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v5
8888
with:
8989
enable-cache: true
90-
python-version: "3.9"
90+
python-version: "3.10"
9191
- name: Install just
9292
run: uv tool install rust-just
9393
- id: setup-mongodb
@@ -112,7 +112,7 @@ jobs:
112112
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v5
113113
with:
114114
enable-cache: true
115-
python-version: "3.9"
115+
python-version: "3.10"
116116
- name: Install just
117117
run: uv tool install rust-just
118118
- name: Install dependencies
@@ -131,7 +131,7 @@ jobs:
131131
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v5
132132
with:
133133
enable-cache: true
134-
python-version: "3.9"
134+
python-version: "3.10"
135135
- name: Install just
136136
run: uv tool install rust-just
137137
- name: Install dependencies
@@ -144,7 +144,7 @@ jobs:
144144
runs-on: ubuntu-latest
145145
strategy:
146146
matrix:
147-
python: ["3.9", "3.11"]
147+
python: ["3.10", "3.11"]
148148
steps:
149149
- uses: actions/checkout@v5
150150
with:
@@ -175,7 +175,7 @@ jobs:
175175
cache: 'pip'
176176
cache-dependency-path: 'pyproject.toml'
177177
# Build sdist on lowest supported Python
178-
python-version: '3.9'
178+
python-version: "3.10"
179179
- name: Build SDist
180180
shell: bash
181181
run: |
@@ -209,7 +209,7 @@ jobs:
209209
cache: 'pip'
210210
cache-dependency-path: 'sdist/test/pyproject.toml'
211211
# Test sdist on lowest supported Python
212-
python-version: '3.9'
212+
python-version: "3.10"
213213
- id: setup-mongodb
214214
uses: mongodb-labs/drivers-evergreen-tools@master
215215
- name: Run connect test from sdist
@@ -233,7 +233,7 @@ jobs:
233233
- name: Install uv
234234
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v5
235235
with:
236-
python-version: '3.9'
236+
python-version: "3.10"
237237
- id: setup-mongodb
238238
uses: mongodb-labs/drivers-evergreen-tools@master
239239
with:

0 commit comments

Comments
 (0)