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