File tree Expand file tree Collapse file tree 2 files changed +18
-14
lines changed Expand file tree Collapse file tree 2 files changed +18
-14
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,12 @@ sigstickers = "sigstickers:cli"
34
34
35
35
[dependency-groups ]
36
36
dev = [
37
- " coverage>=7.6.12" ,
38
- " handsdown>=2.1.0" ,
39
- " pyright>=1.1.394" ,
40
- " pytest>=8.3.4" ,
41
- " pytest-asyncio>=0.25.3" ,
42
- " ruff>=0.9.6" ,
43
- " safety>=3.3.0" ,
37
+ " coverage>=7.6.12" ,
38
+ " handsdown>=2.1.0" ,
39
+ " pyright>=1.1.394" ,
40
+ " pytest>=8.3.4" ,
41
+ " ruff>=0.9.6" ,
42
+ " safety>=3.3.0" ,
44
43
]
45
44
46
45
[tool .ruff ]
@@ -51,13 +50,13 @@ target-version = "py38"
51
50
[tool .ruff .lint ]
52
51
select = [" ALL" ]
53
52
ignore = [
54
- " COM812" , # enforce trailing comma
55
- " D2" , # pydocstyle formatting
53
+ " COM812" , # enforce trailing comma
54
+ " D2" , # pydocstyle formatting
56
55
" ISC001" ,
57
- " N" , # pep8 naming
56
+ " N" , # pep8 naming
58
57
" PLR09" , # pylint refactor too many
59
- " TCH" , # type check blocks
60
- " W191" # ignore this to allow tabs
58
+ " TCH" , # type check blocks
59
+ " W191" , # ignore this to allow tabs
61
60
]
62
61
fixable = [" ALL" ]
63
62
@@ -88,9 +87,13 @@ env_list =
88
87
py311
89
88
py310
90
89
py39
91
- py38
92
90
93
91
[testenv]
94
- deps = pytest
92
+ deps =
93
+ pytest
95
94
commands = pytest tests
96
95
"""
96
+
97
+ [build-system ]
98
+ requires = [" hatchling" ]
99
+ build-backend = " hatchling.build"
Original file line number Diff line number Diff line change 1
1
# This file was autogenerated by uv via the following command:
2
2
# uv export --no-hashes --no-dev -o requirements.txt
3
+ -e .
3
4
anyio == 3.7.1
4
5
certifi == 2025.1.31
5
6
cffi == 1.17.1
You can’t perform that action at this time.
0 commit comments