From beb4f8dca9a980edc040a58e3c0486ab91dfc8f1 Mon Sep 17 00:00:00 2001 From: Alexey Vishnyakov Date: Fri, 1 Sep 2023 09:44:42 +0300 Subject: [PATCH] Switch to ubuntu:20.04 in CI because 18.04 is not supported anymore (#193) --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b074629..f5285fc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ on: jobs: build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 @@ -15,6 +15,9 @@ jobs: # - uses: wemake-services/wemake-python-styleguide@0.16.0 - name: Build run: | + wget https://bootstrap.pypa.io/pip/2.7/get-pip.py + python2 get-pip.py + rm get-pip.py python2 -m pip install --upgrade setuptools wheel python3 -m pip install --upgrade setuptools wheel python2 setup.py sdist bdist_wheel