move pipeline steps to python 3.8

This commit is contained in:
Robert Kaussow 2020-04-06 00:30:37 +02:00
parent 62310900e0
commit f43f3dbc30
2 changed files with 13 additions and 13 deletions

View File

@ -23,7 +23,7 @@ local PipelineLint = {
steps: [
{
name: 'flake8',
image: 'python:3.7',
image: 'python:3.8',
environment: {
PY_COLORS: 1,
},
@ -53,7 +53,7 @@ local PipelineTest = {
PythonVersion(pyversion='3.8'),
{
name: 'codecov',
image: 'python:3.7',
image: 'python:3.8',
environment: {
PY_COLORS: 1,
CODECOV_TOKEN: { from_secret: 'codecov_token' },
@ -89,7 +89,7 @@ local PipelineSecurity = {
steps: [
{
name: 'bandit',
image: 'python:3.7',
image: 'python:3.8',
environment: {
PY_COLORS: 1,
},
@ -118,7 +118,7 @@ local PipelineBuildPackage = {
steps: [
{
name: 'build',
image: 'python:3.7',
image: 'python:3.8',
commands: [
'python setup.py sdist bdist_wheel',
],
@ -176,7 +176,7 @@ local PipelineBuildContainer(arch='amd64') = {
steps: [
{
name: 'build',
image: 'python:3.7',
image: 'python:3.8',
commands: [
'python setup.py bdist_wheel',
],

View File

@ -8,7 +8,7 @@ platform:
steps:
- name: flake8
image: python:3.7
image: python:3.8
commands:
- pip install -r test-requirements.txt -qq
- pip install -qq .
@ -72,7 +72,7 @@ steps:
- clone
- name: codecov
image: python:3.7
image: python:3.8
commands:
- pip install codecov -qq
- coverage combine .tox/py*/.coverage
@ -106,7 +106,7 @@ platform:
steps:
- name: bandit
image: python:3.7
image: python:3.8
commands:
- pip install -r test-requirements.txt -qq
- pip install -qq .
@ -133,7 +133,7 @@ platform:
steps:
- name: build
image: python:3.7
image: python:3.8
commands:
- python setup.py sdist bdist_wheel
@ -189,7 +189,7 @@ platform:
steps:
- name: build
image: python:3.7
image: python:3.8
commands:
- python setup.py bdist_wheel
@ -242,7 +242,7 @@ platform:
steps:
- name: build
image: python:3.7
image: python:3.8
commands:
- python setup.py bdist_wheel
@ -295,7 +295,7 @@ platform:
steps:
- name: build
image: python:3.7
image: python:3.8
commands:
- python setup.py bdist_wheel
@ -470,6 +470,6 @@ depends_on:
---
kind: signature
hmac: 981fa0e9653bab1b4110af5212d45e411dc3e3a6b01f1a6a534b0a1eecb36e94
hmac: 49e423952c5576de0462f252623bc51432d24658e5c893c1534cede967b51ba3
...