6
0

Bump python to 3.12.2

This commit is contained in:
Jon Michael Aanes 2024-03-30 13:49:16 +01:00
parent 5382ef9eaf
commit eaeef4cb6e
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -1,5 +1,8 @@
name: Python Package name: Python Package
env:
PYTHON_VERSION: 3.12.2
on: on:
workflow_call: workflow_call:
inputs: inputs:
@ -13,10 +16,10 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Setting up Python - name: Setting up Python ${{ PYTHON_VERSION }}
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: '3.10' python-version: ${{ PYTHON_VERSION }}
- name: Installing Python Dependencies - name: Installing Python Dependencies
run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest
- name: Check out repository code - name: Check out repository code
@ -29,10 +32,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test] needs: [test]
steps: steps:
- name: Setting up Python - name: Setting up Python ${{ PYTHON_VERSION }}
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: '3.10' python-version: ${{ PYTHON_VERSION }}
- name: Installing Python Dependencies - name: Installing Python Dependencies
run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest
- name: Check out repository code - name: Check out repository code