ci: use python311 base image on ci

This commit is contained in:
Robert Kaussow 2022-11-24 20:51:27 +01:00
parent c71deeff2d
commit bbf1bb4aa0
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
3 changed files with 17 additions and 16 deletions

View File

@ -26,7 +26,7 @@ local PipelineLint = {
steps: [
{
name: 'yapf',
image: 'python:3.10',
image: 'python:3.11',
environment: {
PY_COLORS: 1,
},
@ -40,7 +40,7 @@ local PipelineLint = {
},
{
name: 'flake8',
image: 'python:3.10',
image: 'python:3.11',
environment: {
PY_COLORS: 1,
},
@ -68,7 +68,7 @@ local PipelineTest = {
steps: [
{
name: 'fetch',
image: 'python:3.10',
image: 'python:3.11',
commands: [
'git fetch -tq',
],
@ -97,7 +97,7 @@ local PipelineSecurity = {
steps: [
{
name: 'bandit',
image: 'python:3.10',
image: 'python:3.11',
environment: {
PY_COLORS: 1,
},
@ -128,7 +128,7 @@ local PipelineBuildPackage = {
steps: [
{
name: 'build',
image: 'python:3.10',
image: 'python:3.11',
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
@ -174,7 +174,7 @@ local PipelineBuildPackage = {
},
{
name: 'publish-pypi',
image: 'python:3.10',
image: 'python:3.11',
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
@ -212,7 +212,7 @@ local PipelineBuildContainer(arch='amd64') = {
},
}] else [{
name: 'build',
image: 'python:3.10',
image: 'python:3.11',
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',

View File

@ -8,7 +8,7 @@ platform:
steps:
- name: yapf
image: python:3.10
image: python:3.11
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -19,7 +19,7 @@ steps:
PY_COLORS: 1
- name: flake8
image: python:3.10
image: python:3.11
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -45,7 +45,7 @@ platform:
steps:
- name: fetch
image: python:3.10
image: python:3.11
commands:
- git fetch -tq
@ -133,7 +133,7 @@ platform:
steps:
- name: bandit
image: python:3.10
image: python:3.11
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -162,7 +162,7 @@ platform:
steps:
- name: build
image: python:3.10
image: python:3.11
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -201,7 +201,7 @@ steps:
- refs/tags/**
- name: publish-pypi
image: python:3.10
image: python:3.11
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -234,7 +234,7 @@ platform:
steps:
- name: build
image: python:3.10
image: python:3.11
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -312,7 +312,7 @@ platform:
steps:
- name: build
image: python:3.10
image: python:3.11
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -558,6 +558,6 @@ depends_on:
---
kind: signature
hmac: d4499bb4d7de87b05f4621f4e347e0c451e54b2d8c1c41011978b068eb07813c
hmac: 71fb68f540ff6b5a5f360a6b00b0115e40f9721ef3d0569f2f73bd0cf149c1eb
...

View File

@ -14,6 +14,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
"Topic :: Software Development",
]