File tree 4 files changed +5
-3
lines changed
4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ test = [
63
63
' setuptools >= 56.0.0; python_version == "3.10"' ,
64
64
' setuptools >= 56.0.0; python_version == "3.11"' ,
65
65
' setuptools >= 67.8.0; python_version >= "3.12"' ,
66
+ " setuptools_scm >= 6" ,
66
67
]
67
68
typing = [
68
69
" build[uv]" ,
Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ def local_pip(monkeypatch):
80
80
81
81
@pytest .fixture (autouse = True )
82
82
def avoid_constraints (monkeypatch ):
83
- monkeypatch .delenv (" PIP_CONSTRAINT" , raising = False )
84
- monkeypatch .delenv (" UV_CONSTRAINT" , raising = False )
83
+ monkeypatch .delenv (' PIP_CONSTRAINT' , raising = False )
84
+ monkeypatch .delenv (' UV_CONSTRAINT' , raising = False )
85
85
86
86
87
87
@pytest .fixture (autouse = True , params = [False ])
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ setuptools==42.0.0; python_version < "3.10"
5
5
setuptools==56.0.0; python_version == "3.10"
6
6
setuptools==56.0.0; python_version == "3.11"
7
7
setuptools==67.8.0; python_version >= "3.12"
8
+ setuptools_scm==6.3.2; python_version < "3.12"
8
9
tomli==1.1.0
9
10
# virtualenv==20.0.35
10
11
wheel==0.36.0
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ pass_env =
100
100
DIFF_AGAINST
101
101
set_env =
102
102
commands =
103
- coverage combine {toxworkdir}
103
+ - coverage combine {toxworkdir}
104
104
coverage report --skip-covered --show-missing -i
105
105
coverage xml -o {toxworkdir}/coverage.xml -i
106
106
coverage html -d {toxworkdir}/htmlcov -i
You can’t perform that action at this time.
0 commit comments