From 4416d25a18da0db77cfa79c86f32641e935cc317 Mon Sep 17 00:00:00 2001 From: Michele Nottoli <michele.nottoli@gmail.com> Date: Tue, 24 Oct 2023 14:07:41 +0200 Subject: [PATCH] Updated dependencies. --- .gitlab-ci.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index af1975e..0b1a74a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,7 +18,7 @@ default: - pip install virtualenv - virtualenv venv - source venv/bin/activate - - pip install .[tests] + - pip install ".[tests]" - pip install pylint anybadge coverage tags: - Maths diff --git a/setup.py b/setup.py index 0a52c51..407366b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( version="0.4.1", packages=find_packages(), install_requires=["numpy", "scipy"], - tests_require=["pytest"], + extras_require={"tests": ["pytest"]}, author="Michele Nottoli and Benjamin Stamm", description="Tools for generating new guesses for SCF calculations.", classifiers=[ -- GitLab