ci: use python311 base image on ci (#210)

This commit is contained in:
Robert Kaussow 2022-11-24 21:35:44 +01:00 committed by GitHub
parent 341e3092c4
commit 8a17081897
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: d17bcb89eea572d2f6b4286f491979e310e8932878a5c73ea0cd7530cff7da6d
hmac: ef3d276be873329d3be72153f6dcdbfc17997e0a255dc7c602c582640a01ad02
...

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",
]