From 9eb3274f3fe7873400eb2c636ac25f88012c51a7 Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson <oscar.gustafsson@gmail.com> Date: Thu, 14 Sep 2023 11:50:50 +0200 Subject: [PATCH] Update dependencies on install (and install pyqt5 during tests for now) --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7993e23..91abc39 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,7 +34,7 @@ before_script: - pip install virtualenv - virtualenv venv - source venv/bin/activate - - pip install pytest pytest-cov + - pip install --upgrade pytest pytest-cov pyqt5 pytest-qt - python -m pip install . .run-test: @@ -60,14 +60,14 @@ run-doc-test: image: python:3.10 stage: test script: - - pip install numpydoc sphinx furo + - pip install --upgrade numpydoc sphinx furo - sphinx-build -b html docs public pages: stage: deploy image: python:3.10 script: - - pip install numpydoc sphinx furo + - pip install --upgrade numpydoc sphinx furo - sphinx-build -b html docs public artifacts: paths: -- GitLab