Skip to content

Commit f308338

Browse files
authored
Update workflows to use ubuntu-latest (#2477)
* Update workflows to use ubuntu-latest * Stop testing process_pr for Python 3.6
1 parent 1a321af commit f308338

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: .github/workflows/test-changes.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- master
99
jobs:
1010
build:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
1414
python-version: [ '3.x' ]

Diff for: .github/workflows/test-process-pr.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.6", "3.9", "3.10", "3.11", "3.12"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1515

1616
steps:
1717
- uses: MathRobin/[email protected]

Diff for: tests/run_pr_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash -xe
22
INSTALL_REQS=0
33
if [ ! -d venv ]; then
4-
python3.6 -m venv venv
4+
python3.9 -m venv venv
55
INSTALL_REQS=1
66
fi
77

0 commit comments

Comments
 (0)