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: before_script:
- python -V - python -V
- pip install -e . - pip install -e .
variables: variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/pip-cache" PIP_CACHE_DIR: "$CI_PROJECT_DIR/pip-cache"
......
...@@ -5,6 +5,6 @@ import sys ...@@ -5,6 +5,6 @@ import sys
import hektor import hektor
if __name__ == '__main__': if __name__ == '__main__':
if sys.version_info < (3, 4): if sys.version_info < (3, 5):
sys.exit("At least Python 3.4 is required.") sys.exit("At least Python 3.4 is required.")
hektor.main() hektor.main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment