From 2c67130b4038b30abc7f7876cc230ff9d1e115d2 Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Tue, 10 Jan 2023 11:54:17 +0100 Subject: [PATCH] DRAFT: Re-introduce python 3.7 to tests --- setup.py | 3 ++- tox.ini | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d7ed9dc8..3bce5268 100755 --- a/setup.py +++ b/setup.py @@ -154,7 +154,8 @@ def setup_package(): long_description_content_type="text/markdown", author='Henrik tom Wörden', author_email='h.tomwoerden@indiscale.com', - install_requires=["caosdb>=0.7.0", + python_requires='>=3.7', + install_requires=["caosdb>=0.10.1", "jsonschema>=4.4.0", "numpy>=1.17.3", "openpyxl>=3.0.7", diff --git a/tox.ini b/tox.ini index 7696e44d..0e9664c3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py38, py39, py310, py311 +envlist=py37, py38, py39, py310, py311 skip_missing_interpreters = true [testenv] -- GitLab