diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index f69913e..2756b05 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12'] steps: diff --git a/pyproject.toml b/pyproject.toml index af5e4dd..50580ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" name = "bbp-workflow" description = "Automated pipelines of batch jobs using python and the luigi framework" readme = { file = "README.rst", content-type = "text/x-rst" } -requires-python = ">=3.11" +requires-python = ">=3.10" license = { text = "Apache-2.0" } authors = [ { name = "Blue Brain Project, EPFL" }, @@ -69,6 +69,7 @@ local_scheme = "no-local-version" [tool.black] line-length = 100 target-version = [ + 'py310', 'py311', 'py312', ] diff --git a/tox.ini b/tox.ini index eb38ba7..d575f12 100644 --- a/tox.ini +++ b/tox.ini @@ -9,7 +9,7 @@ files = {[base]name} tests doc/source/conf.py envlist = check-packaging lint - py{311,312} + py{310,311,312} [testenv] deps = {[base]testdeps}