Skip to content

Commit 49a0ccd

Browse files
authored
Set Python version requirements in pyproject.toml - see HEA-572
1 parent 2bd0d32 commit 49a0ccd

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1+
[project]
2+
name = "hea-database-development"
3+
version = "0.1.0"
4+
description = "The HEA Database manages HEA Baseline data."
5+
readme = "README.md"
6+
requires-python = ">=3.12"
7+
18
[tool.ruff]
29
line-length = 119
3-
target-version = 'py310'
10+
target-version = 'py312'
411
exclude = [
512
'.eggs', # exclude a few common directories in the
613
'.git', # root of the project
@@ -27,7 +34,7 @@ docstring-quotes = "double"
2734

2835
[tool.black]
2936
line-length = 119
30-
target-version = ['py310']
37+
target-version = ['py312']
3138
include = '\.pyi?$'
3239
exclude = '''
3340

0 commit comments

Comments
 (0)