Skip to content
Snippets Groups Projects
Verified Commit d39b6779 authored by Jan Maximilian Michal's avatar Jan Maximilian Michal
Browse files

Bump Python version to 3.5 to support typing

parent 182469cf
No related branches found
No related tags found
No related merge requests found
Pipeline #
image: python:3.4
image: python:3.5
before_script:
- python -V
- pip install -e .
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/pip-cache"
......
......@@ -5,6 +5,6 @@ import sys
import hektor
if __name__ == '__main__':
if sys.version_info < (3, 4):
if sys.version_info < (3, 5):
sys.exit("At least Python 3.4 is required.")
hektor.main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment