Skip to content

Commit ae3e3df

Browse files
author
Steve Ayers
committed
Update
1 parent f946b5a commit ae3e3df

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
20+
# Note we can't test above v3.12 because google-re2 does not have a
21+
# built wheel beyond 3.12 on PyPI
22+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2123
steps:
2224
- name: Checkout code
2325
uses: actions/checkout@v4

.github/workflows/conformance.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
20+
# Note we can't test above v3.12 because google-re2 does not have a
21+
# built wheel beyond 3.12 on PyPI
22+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2123
steps:
2224
- name: Checkout code
2325
uses: actions/checkout@v4
@@ -32,5 +34,7 @@ jobs:
3234
uses: actions/setup-python@v5
3335
with:
3436
python-version: ${{ matrix.python-version }}
37+
cache: "pipenv"
38+
- run: ${{steps.python.outputs.python-path}} -m pip install --upgrade pip pipenv
3539
- name: Test conformance
3640
run: make conformance PYTHON=${{ steps.python.outputs.python-path }}

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.13"
25+
python-version: "3.12"
2626
- name: Install pypa/build
2727
run: |
2828
python -m pip install build

0 commit comments

Comments
 (0)