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
+ 3
9
@@ -62,25 +62,19 @@ mypy:
@@ -62,25 +62,19 @@ mypy:
allow_failure: true
allow_failure: true
# run unit tests
# run unit tests
unittest_py3.7:
unittest_py3.8:
tags: [ docker ]
tags: [ docker ]
stage: test
stage: test
needs: [ ]
needs: [ ]
image: python:3.7
image: python:3.8
script: &python_test_script
script: &python_test_script
# Python docker has problems with tox and pip so use plain pytest here
# Python docker has problems with tox and pip so use plain pytest here
- touch ~/.pylinkahead.ini
- touch ~/.pylinkahead.ini
 
- pip install 'cargo;python_version>="3.13"' # TODO: Check whether this is still necessary after an official 3.13 release
- pip install pynose pytest pytest-cov jsonschema>=4.4.0 setuptools
- pip install pynose pytest pytest-cov jsonschema>=4.4.0 setuptools
- pip install .
- pip install .
- python -m pytest unittests
- 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
# This needs to be changed once Python 3.9 isn't the standard Python in Debian
# anymore.
# anymore.
unittest_py3.9:
unittest_py3.9:
Loading