From bbcf91931389dca8acce524f51fe830f3f6db2c0 Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Tue, 10 Jan 2023 10:53:41 +0100 Subject: [PATCH] TST: Re-introduce python 3.7 to tox --- setup.py | 2 +- tox.ini | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index fca246ed..e5160cb1 100755 --- a/setup.py +++ b/setup.py @@ -171,7 +171,7 @@ def setup_package(): "Topic :: Scientific/Engineering :: Information Analysis", ], packages=find_packages('src'), - python_requires='>=3.8', + python_requires='>=3.7', package_dir={'': 'src'}, install_requires=['lxml>=4.6.3', "requests[socks]>=2.26", diff --git a/tox.ini b/tox.ini index 83f6e8df..8212226e 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] @@ -7,7 +7,7 @@ deps = . nose pytest pytest-cov - jsonschema==4.0.1 + jsonschema>=4.4.0 commands=py.test --cov=caosdb -vv {posargs} [flake8] -- GitLab