From 37f06a4ae845471009610d79d616eab0bdd903d3 Mon Sep 17 00:00:00 2001 From: Andreas Källberg Date: Mon, 25 Sep 2023 12:48:56 +0200 Subject: gh-actions: Don't use ubuntu-18 and macos-10.15 There are no longer any gihub actions runners available for these Note that this means we can't build for ubuntu-18 anymore, but that should hopefully no longer be relevant, since it's over 5 years old now. --- .github/workflows/build-python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/build-python-package.yml') diff --git a/.github/workflows/build-python-package.yml b/.github/workflows/build-python-package.yml index 67cbba6dd..0f6e3c050 100644 --- a/.github/workflows/build-python-package.yml +++ b/.github/workflows/build-python-package.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: true matrix: - os: [ubuntu-18.04, macos-10.15] + os: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v1 -- cgit v1.2.3 From cf1ef40789fc6761e46ecac1215cdb018972f2ae Mon Sep 17 00:00:00 2001 From: Andreas Källberg Date: Mon, 25 Sep 2023 12:53:55 +0200 Subject: gh-actions: Bump the python version cibuildwheel requires python >= 3.8 --- .github/workflows/build-python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows/build-python-package.yml') diff --git a/.github/workflows/build-python-package.yml b/.github/workflows/build-python-package.yml index 0f6e3c050..5e484bdd0 100644 --- a/.github/workflows/build-python-package.yml +++ b/.github/workflows/build-python-package.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/setup-python@v1 name: Install Python with: - python-version: '3.7' + python-version: '3.x' - name: Install cibuildwheel run: | @@ -59,7 +59,7 @@ jobs: - uses: actions/setup-python@v2 name: Install Python with: - python-version: '3.7' + python-version: '3.x' - name: Build sdist run: cd src/runtime/python && python setup.py sdist -- cgit v1.2.3