Skip to content

Commit aa93a1f

Browse files
committed
Stop testing process_pr for Python 3.6
1 parent c809b7e commit aa93a1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
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)