feat: add python3.10 support (#180)

This commit is contained in:
Robert Kaussow 2021-10-07 09:52:45 +02:00 committed by GitHub
parent 3a39b62d70
commit e70b5368ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 18 deletions

View File

@ -26,7 +26,7 @@ local PipelineLint = {
steps: [
{
name: 'yapf',
image: 'python:3.9',
image: 'python:3.10',
environment: {
PY_COLORS: 1,
},
@ -40,7 +40,7 @@ local PipelineLint = {
},
{
name: 'flake8',
image: 'python:3.9',
image: 'python:3.10',
environment: {
PY_COLORS: 1,
},
@ -68,7 +68,7 @@ local PipelineTest = {
steps: [
{
name: 'fetch',
image: 'python:3.9',
image: 'python:3.10',
commands: [
'git fetch -tq',
],
@ -76,6 +76,7 @@ local PipelineTest = {
PythonVersion(pyversion='3.7'),
PythonVersion(pyversion='3.8'),
PythonVersion(pyversion='3.9'),
PythonVersion(pyversion='3.10'),
],
depends_on: [
'lint',
@ -95,7 +96,7 @@ local PipelineSecurity = {
steps: [
{
name: 'bandit',
image: 'python:3.9',
image: 'python:3.10',
environment: {
PY_COLORS: 1,
},
@ -126,7 +127,7 @@ local PipelineBuildPackage = {
steps: [
{
name: 'build',
image: 'python:3.9',
image: 'python:3.10',
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
@ -172,7 +173,7 @@ local PipelineBuildPackage = {
},
{
name: 'publish-pypi',
image: 'python:3.9',
image: 'python:3.10',
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
@ -198,7 +199,7 @@ local PipelineBuildPackage = {
local PipelineBuildContainer(arch='amd64') = {
local build = if arch == 'arm' then [{
name: 'build',
image: 'python:3.9-alpine',
image: 'python:3.10-alpine',
commands: [
'apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev git cargo',
'git fetch -tq',
@ -210,7 +211,7 @@ local PipelineBuildContainer(arch='amd64') = {
},
}] else [{
name: 'build',
image: 'python:3.9',
image: 'python:3.10',
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',

View File

@ -8,7 +8,7 @@ platform:
steps:
- name: yapf
image: python:3.9
image: python:3.10
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -19,7 +19,7 @@ steps:
PY_COLORS: 1
- name: flake8
image: python:3.9
image: python:3.10
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -45,7 +45,7 @@ platform:
steps:
- name: fetch
image: python:3.9
image: python:3.10
commands:
- git fetch -tq
@ -88,6 +88,19 @@ steps:
depends_on:
- fetch
- name: python310-pytest
image: python:3.10
commands:
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
- poetry version
- poetry run ansible-doctor --help
environment:
PY_COLORS: 1
depends_on:
- fetch
trigger:
ref:
- refs/heads/main
@ -107,7 +120,7 @@ platform:
steps:
- name: bandit
image: python:3.9
image: python:3.10
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -136,7 +149,7 @@ platform:
steps:
- name: build
image: python:3.9
image: python:3.10
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -175,7 +188,7 @@ steps:
- refs/tags/**
- name: publish-pypi
image: python:3.9
image: python:3.10
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -208,7 +221,7 @@ platform:
steps:
- name: build
image: python:3.9
image: python:3.10
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -286,7 +299,7 @@ platform:
steps:
- name: build
image: python:3.9
image: python:3.10
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
@ -364,7 +377,7 @@ platform:
steps:
- name: build
image: python:3.9-alpine
image: python:3.10-alpine
commands:
- apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev git cargo
- git fetch -tq
@ -617,6 +630,6 @@ depends_on:
---
kind: signature
hmac: 580d5097f554e354260dcc12ecb4294851ea90d4956c3d0c48b1415b0e9667c8
hmac: 593f72614c82e67ac77780637e1acfccfc478b39981b028d5459ee7e4d2e9477
...

View File

@ -13,6 +13,7 @@ classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",