Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

add py3.10 #7

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down Expand Up @@ -69,6 +69,7 @@ local_scheme = "no-local-version"
[tool.black]
line-length = 100
target-version = [
'py310',
'py311',
'py312',
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
Loading