summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2023-01-26 11:55:59 -0600
committerJason Madden <jamadden@gmail.com>2023-01-26 12:10:39 -0600
commit70eb8f64747e42446c125b34a0d7cc9fc1183eac (patch)
treef5a8b07f919ac885f45ce8ca9911b20284a17cbc
parentb6a5888c395c9e9e8be76193593313357b2b414d (diff)
downloadgreenlet-70eb8f64747e42446c125b34a0d7cc9fc1183eac.tar.gz
Switch from ubuntu-latest to ubuntu-20.04 in an attempt to get the legacy versions of Python working again.
-rw-r--r--.github/workflows/tests.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 7c8f344..316dafb 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -26,7 +26,10 @@ jobs:
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
- os: [ubuntu-latest, macos-latest]
+ # Jan 2023: We have pinned back from ubuntu-latest (which is
+ # now ubuntu 22.04) because older Python versions like
+ # 3.5, 3.6 and presumably 2.7 are not available in it.
+ os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python
@@ -88,7 +91,7 @@ jobs:
strategy:
matrix:
python-version: [2.7, 3.5, "3.11"]
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python