Bump python to 3.12.2
This commit is contained in:
parent
5382ef9eaf
commit
eaeef4cb6e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user