8000 Remove python 3.8 support · scylladb/python-driver@d5834c6 · GitHub
[go: up one dir, main page]

Skip to content

Remove python 3.8 support #1490

Remove python 3.8 support

Remove python 3.8 support #1490

Workflow file for this run

name: Build and upload to PyPi
on:
push:
branches:
- master
- 'branch-**'
workflow_dispatch:
jobs:
build-and-publish:
name: "Build wheels"
uses: ./.github/workflows/lib-build-and-push.yml
with:
upload: false
# TODO: Remove when https://github.com/pypa/gh-action-pypi-publish/issues/166 is fixed and update build-and-publish.with.upload to ${{ endsWith(github.event.ref, 'scylla') }}
publish:
name: "Publish wheels to PyPi"
if: ${{ endsWith(github.event.ref, 'scylla') }}
needs: build-and-publish
runs-on: ubuntu-24.04
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true
0