From 9df1fc454a3ee216b1dacdac3af53ed189048d5d Mon Sep 17 00:00:00 2001 From: Chris Marslender Date: Fri, 18 Aug 2023 18:21:39 -0500 Subject: [PATCH] Update to 20.04 (18.04 not available now) and python 3.8, as the new minimum version we use --- .github/workflows/publish-to-pypi.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 9a27589..e4bb1df 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -21,7 +21,7 @@ permissions: jobs: build-n-publish: name: Build and publish Python distributions to PyPI - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 @@ -31,10 +31,10 @@ jobs: - run: | git fetch origin +refs/tags/*:refs/tags/* - - name: Set up Python 3.7 + - name: Set up Python 3.8 uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.8 - name: Install pep517 run: >-