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