Skip to content

Add python 3.12/13

Add python 3.12/13 #69

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
tags:
- '*'
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt install g++ qtbase5-dev qt5-default
python -m pip install --upgrade pip
python -m pip install sip twine
- name: Build
run: |
sip-sdist
sip-wheel --verbose
- name: Upload
if: ${{ github.ref_type == 'tag' }}
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
twine upload --skip-existing pywpsrpc-*.tar.gz pywpsrpc-*.whl