From beef77f3688f1e85e7e0a494618e0f0f2f43584c Mon Sep 17 00:00:00 2001 From: s3lph Date: Fri, 19 Oct 2018 22:15:05 +0200 Subject: [PATCH] Fixed matemat version fetch. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6391f3b..973f99c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,7 @@ stages: before_script: -- export MATEMAT_VERSION=$(python -c 'from matemat import __version__; print(__version__)') +- export MATEMAT_VERSION=$(python -c 'import matemat; print(matemat.__version__)')