feat: add python3.10 support (#83)

This commit is contained in:
Robert Kaussow 2021-10-07 09:52:52 +02:00 committed by GitHub
parent 0a8b49e0a6
commit e4c2fe2e09
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: [ steps: [
{ {
name: 'yapf', name: 'yapf',
image: 'python:3.9', image: 'python:3.10',
environment: { environment: {
PY_COLORS: 1, PY_COLORS: 1,
}, },
@ -40,7 +40,7 @@ local PipelineLint = {
}, },
{ {
name: 'flake8', name: 'flake8',
image: 'python:3.9', image: 'python:3.10',
environment: { environment: {
PY_COLORS: 1, PY_COLORS: 1,
}, },
@ -68,7 +68,7 @@ local PipelineTest = {
steps: [ steps: [
{ {
name: 'fetch', name: 'fetch',
image: 'python:3.9', image: 'python:3.10',
commands: [ commands: [
'git fetch -tq', 'git fetch -tq',
], ],
@ -76,6 +76,7 @@ local PipelineTest = {
PythonVersion(pyversion='3.7'), PythonVersion(pyversion='3.7'),
PythonVersion(pyversion='3.8'), PythonVersion(pyversion='3.8'),
PythonVersion(pyversion='3.9'), PythonVersion(pyversion='3.9'),
PythonVersion(pyversion='3.10'),
], ],
depends_on: [ depends_on: [
'lint', 'lint',
@ -95,7 +96,7 @@ local PipelineSecurity = {
steps: [ steps: [
{ {
name: 'bandit', name: 'bandit',
image: 'python:3.9', image: 'python:3.10',
environment: { environment: {
PY_COLORS: 1, PY_COLORS: 1,
}, },
@ -126,7 +127,7 @@ local PipelineBuildPackage = {
steps: [ steps: [
{ {
name: 'build', name: 'build',
image: 'python:3.9', image: 'python:3.10',
commands: [ commands: [
'git fetch -tq', 'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq', 'pip install poetry poetry-dynamic-versioning -qq',
@ -172,7 +173,7 @@ local PipelineBuildPackage = {
}, },
{ {
name: 'publish-pypi', name: 'publish-pypi',
image: 'python:3.9', image: 'python:3.10',
commands: [ commands: [
'git fetch -tq', 'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq', 'pip install poetry poetry-dynamic-versioning -qq',
@ -198,7 +199,7 @@ local PipelineBuildPackage = {
local PipelineBuildContainer(arch='amd64') = { local PipelineBuildContainer(arch='amd64') = {
local build = if arch == 'arm' then [{ local build = if arch == 'arm' then [{
name: 'build', name: 'build',
image: 'python:3.9-alpine', image: 'python:3.10-alpine',
commands: [ commands: [
'apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev git cargo', 'apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev git cargo',
'git fetch -tq', 'git fetch -tq',
@ -210,7 +211,7 @@ local PipelineBuildContainer(arch='amd64') = {
}, },
}] else [{ }] else [{
name: 'build', name: 'build',
image: 'python:3.9', image: 'python:3.10',
commands: [ commands: [
'git fetch -tq', 'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq', 'pip install poetry poetry-dynamic-versioning -qq',

View File

@ -8,7 +8,7 @@ platform:
steps: steps:
- name: yapf - name: yapf
image: python:3.9 image: python:3.10
commands: commands:
- git fetch -tq - git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq - pip install poetry poetry-dynamic-versioning -qq
@ -19,7 +19,7 @@ steps:
PY_COLORS: 1 PY_COLORS: 1
- name: flake8 - name: flake8
image: python:3.9 image: python:3.10
commands: commands:
- git fetch -tq - git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq - pip install poetry poetry-dynamic-versioning -qq
@ -45,7 +45,7 @@ platform:
steps: steps:
- name: fetch - name: fetch
image: python:3.9 image: python:3.10
commands: commands:
- git fetch -tq - git fetch -tq
@ -88,6 +88,19 @@ steps:
depends_on: depends_on:
- fetch - 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 docker-autotag --help
environment:
PY_COLORS: 1
depends_on:
- fetch
trigger: trigger:
ref: ref:
- refs/heads/main - refs/heads/main
@ -107,7 +120,7 @@ platform:
steps: steps:
- name: bandit - name: bandit
image: python:3.9 image: python:3.10
commands: commands:
- git fetch -tq - git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq - pip install poetry poetry-dynamic-versioning -qq
@ -136,7 +149,7 @@ platform:
steps: steps:
- name: build - name: build
image: python:3.9 image: python:3.10
commands: commands:
- git fetch -tq - git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq - pip install poetry poetry-dynamic-versioning -qq
@ -175,7 +188,7 @@ steps:
- refs/tags/** - refs/tags/**
- name: publish-pypi - name: publish-pypi
image: python:3.9 image: python:3.10
commands: commands:
- git fetch -tq - git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq - pip install poetry poetry-dynamic-versioning -qq
@ -208,7 +221,7 @@ platform:
steps: steps:
- name: build - name: build
image: python:3.9 image: python:3.10
commands: commands:
- git fetch -tq - git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq - pip install poetry poetry-dynamic-versioning -qq
@ -286,7 +299,7 @@ platform:
steps: steps:
- name: build - name: build
image: python:3.9 image: python:3.10
commands: commands:
- git fetch -tq - git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq - pip install poetry poetry-dynamic-versioning -qq
@ -364,7 +377,7 @@ platform:
steps: steps:
- name: build - name: build
image: python:3.9-alpine image: python:3.10-alpine
commands: commands:
- apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev git cargo - apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev git cargo
- git fetch -tq - git fetch -tq
@ -532,6 +545,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: 96929fe2dbc8b669cc584b68b7ccf0663cdfb7658088a0b3b34d49aad4ad5888 hmac: f7c56c0b77bc2b2c3548e91260baa15df3101e917537e5fac2a24e6feff12835
... ...

View File

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