Skip to content

Commit

Permalink
BLD: fix the build (pin ubuntu version to 20.04)?
Browse files Browse the repository at this point in the history
  • Loading branch information
fedarko committed Jun 22, 2023
1 parent 3f7dc3b commit 46dc574
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ name: Standalone CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
# ubuntu-latest doesn't support python 3.6 -- see
# https://github.com/actions/setup-python/issues/544. Ideally we'd do
# something fancy to test on ubuntu-latest for all python versions > 3.6
# (and then test on ubuntu-20.04 for just python 3.6), but this is the path
# of least resistance.
runs-on: ubuntu-20.04

strategy:
matrix:
Expand Down

0 comments on commit 46dc574

Please sign in to comment.