Skip to content
Snippets Groups Projects

Remove Python 3.7

Merged Florian Spreckelsen requested to merge f-remove-python37 into dev
All threads resolved!
Files
4
+ 10
11
@@ -62,11 +62,11 @@ mypy:
allow_failure: true
# run unit tests
unittest_py3.7:
unittest_py3.8:
tags: [ docker ]
stage: test
needs: [ ]
image: python:3.7
image: python:3.8
script: &python_test_script
# Python docker has problems with tox and pip so use plain pytest here
- touch ~/.pylinkahead.ini
@@ -74,13 +74,6 @@ unittest_py3.7:
- pip install .
- python -m pytest unittests
unittest_py3.8:
tags: [ docker ]
stage: test
needs: [ ]
image: python:3.8
script: *python_test_script
# This needs to be changed once Python 3.9 isn't the standard Python in Debian
# anymore.
unittest_py3.9:
@@ -121,8 +114,14 @@ unittest_py3.13:
stage: test
needs: [ ]
image: python:3.13-rc
script: *python_test_script
script:
# TODO: Replace by '*python_test_script' as soon as 3.13 has been officially released.
# Python docker has problems with tox and pip so use plain pytest here
- apt update && apt install -y cargo
- touch ~/.pylinkahead.ini
- pip install pynose pytest pytest-cov jsonschema>=4.4.0 setuptools
- pip install .
- python -m pytest unittests
# Trigger building of server image and integration tests
trigger_build:
Loading