Skip to content

Commit

Permalink
temp: build: compile python requirements with 3.8, not 3.11
Browse files Browse the repository at this point in the history
We haven't quite dropped 3.8 support yet, so we can't use these
workflows if they're compiling with 3.11

Revert this commit when we drop 3.8 support.

WIP: how do we tell the upgrade requirements workflow to use 3.8?
  • Loading branch information
kdmccormick committed Jun 10, 2024
1 parent 6fc7e3b commit 1cefd59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile-python-requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.8"

- name: Run make compile-requirements
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade-one-python-dependency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.8"

- name: Update any pinned dependencies
env:
Expand Down

0 comments on commit 1cefd59

Please sign in to comment.