Skip to content

Commit d1aa848

Browse files
authored
fix: Pin Python version to 3.11 (#31)
Latest Python version doesn't work with the Arrow version we're using (we're using the latest Arrow version but a new version should be released soon)
1 parent 0963346 commit d1aa848

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v4
1919
with:
20-
python-version: '3.x'
20+
python-version: '3.11'
2121
- name: Install dependencies
2222
run: |
2323
pip install -r requirements.txt

.github/workflows/regen.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v4
1616
with:
17-
python-version: "3.x"
17+
python-version: '3.11'
1818
- name: Install dependencies
1919
run: |
20+
pip install --upgrade pip
2021
pip install -r requirements.txt
2122
- name: Generate code
2223
run: |

0 commit comments

Comments
 (0)