File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,15 @@ build-backend = "hatchling.build"
6
6
name = " function"
7
7
description = ' A composition function'
8
8
readme = " README.md"
9
- requires-python = " >=3.11"
9
+ requires-python = " >=3.11,<3.13 "
10
10
license = " Apache-2.0"
11
11
keywords = []
12
12
authors = [{
name =
" Crossplane Maintainers" ,
email =
" [email protected] " }]
13
13
classifiers = [
14
14
" Development Status :: 4 - Beta" ,
15
15
" Programming Language :: Python" ,
16
16
" Programming Language :: Python :: 3.11" ,
17
+ " Programming Language :: Python :: 3.12" ,
17
18
]
18
19
19
20
dependencies = [
@@ -66,6 +67,8 @@ unit = "python -m unittest tests/*.py"
66
67
[tool .ruff ]
67
68
target-version = " py311"
68
69
exclude = [" function/proto/*" ]
70
+
71
+ [tool .ruff .lint ]
69
72
select = [
70
73
" A" ,
71
74
" ARG" ,
@@ -101,7 +104,7 @@ ignore = ["ISC001"] # Ruff warns this is incompatible with ruff format.
101
104
[tool .ruff .lint .per-file-ignores ]
102
105
"tests/*" = [" D" ] # Don't require docstrings for tests.
103
106
104
- [tool .ruff .isort ]
107
+ [tool .ruff .lint . isort ]
105
108
known-first-party = [" function" ]
106
109
107
110
[tool .ruff .lint .pydocstyle ]
You can’t perform that action at this time.
0 commit comments