move pipeline steps to python 3.8

This commit is contained in:
Robert Kaussow 2020-04-05 23:21:12 +02:00
parent 60da3d818c
commit c20a39c772
2 changed files with 13 additions and 13 deletions

View File

@ -24,7 +24,7 @@ local PipelineLint = {
steps: [ steps: [
{ {
name: 'flake8', name: 'flake8',
image: 'python:3.7', image: 'python:3.8',
environment: { environment: {
PY_COLORS: 1, PY_COLORS: 1,
}, },
@ -71,7 +71,7 @@ local PipelineSecurity = {
steps: [ steps: [
{ {
name: 'bandit', name: 'bandit',
image: 'python:3.7', image: 'python:3.8',
environment: { environment: {
PY_COLORS: 1, PY_COLORS: 1,
}, },
@ -100,7 +100,7 @@ local PipelineBuildPackage = {
steps: [ steps: [
{ {
name: 'build', name: 'build',
image: 'python:3.7', image: 'python:3.8',
commands: [ commands: [
'python setup.py sdist bdist_wheel', 'python setup.py sdist bdist_wheel',
], ],
@ -158,7 +158,7 @@ local PipelineBuildContainer(arch='amd64') = {
steps: [ steps: [
{ {
name: 'build', name: 'build',
image: 'python:3.7', image: 'python:3.8',
commands: [ commands: [
'python setup.py bdist_wheel', 'python setup.py bdist_wheel',
], ],

View File

@ -8,7 +8,7 @@ platform:
steps: steps:
- name: flake8 - name: flake8
image: python:3.7 image: python:3.8
commands: commands:
- pip install -r test-requirements.txt -qq - pip install -r test-requirements.txt -qq
- pip install -qq . - pip install -qq .
@ -64,8 +64,8 @@ steps:
depends_on: depends_on:
- clone - clone
- name: python38-rc-pytest - name: python38-pytest
image: python:3.8-rc image: python:3.8
commands: commands:
- pip install -r test-requirements.txt -qq - pip install -r test-requirements.txt -qq
- pip install -qq . - pip install -qq .
@ -94,7 +94,7 @@ platform:
steps: steps:
- name: bandit - name: bandit
image: python:3.7 image: python:3.8
commands: commands:
- pip install -r test-requirements.txt -qq - pip install -r test-requirements.txt -qq
- pip install -qq . - pip install -qq .
@ -121,7 +121,7 @@ platform:
steps: steps:
- name: build - name: build
image: python:3.7 image: python:3.8
commands: commands:
- python setup.py sdist bdist_wheel - python setup.py sdist bdist_wheel
@ -177,7 +177,7 @@ platform:
steps: steps:
- name: build - name: build
image: python:3.7 image: python:3.8
commands: commands:
- python setup.py bdist_wheel - python setup.py bdist_wheel
@ -230,7 +230,7 @@ platform:
steps: steps:
- name: build - name: build
image: python:3.7 image: python:3.8
commands: commands:
- python setup.py bdist_wheel - python setup.py bdist_wheel
@ -283,7 +283,7 @@ platform:
steps: steps:
- name: build - name: build
image: python:3.7 image: python:3.8
commands: commands:
- python setup.py bdist_wheel - python setup.py bdist_wheel
@ -458,6 +458,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: 3b58fe1bfbb9628ccf96b9ffa8555eb46b1c54a763856c7c5c51ab989c22b196 hmac: 69a8767d5aa8f3a9c4055df8c8338eebbed89d727860c893461ed71e152c0390
... ...