Skip to content

Commit

Permalink
Fix python version for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
David Kraus committed Oct 10, 2023
1 parent eb8c18c commit c5ed5f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ workflow:

bandit:
stage: SAST
image: python:3
image: python:3.11
tags:
- faradaytests
script:
Expand All @@ -69,7 +69,7 @@ bandit:
- when: on_success

flake8:
image: python:3
image: python:3.11
stage: pre_testing
before_script:
- pip install flake8
Expand All @@ -92,11 +92,11 @@ flake8:

tests:
extends: .test_base
image: python:3
image: python:3.11

test_performance:
extends: .test_base
image: python:3
image: python:3.11
stage: post_testing
allow_failure: true
variables:
Expand All @@ -106,7 +106,7 @@ test_performance:
when: on_success

publish_pypi:
image: python:3
image: python:3.11
stage: publish
script:
- apt-get update -qy
Expand Down

0 comments on commit c5ed5f4

Please sign in to comment.