File tree 3 files changed +4
-4
lines changed
setuptools/config/_validate_pyproject
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
The code contained in this directory was automatically generated using the
2
2
following command:
3
3
4
- python -m validate_pyproject.vendoring --output-dir=setuptools/config/_validate_pyproject --enable-plugins setuptools distutils --very-verbose
4
+ python -m validate_pyproject.pre_compile --output-dir=setuptools/config/_validate_pyproject --enable-plugins setuptools distutils --very-verbose
5
5
6
6
Please avoid changing it manually.
7
7
@@ -31,7 +31,7 @@ by the same projects:
31
31
- `__init__.py`
32
32
- `fastjsonschema_validations.py`
33
33
34
- The relevant copyright notes and licenses are included bellow .
34
+ The relevant copyright notes and licenses are included below .
35
35
36
36
37
37
***
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ def __call__(self, value: str) -> bool:
139
139
if self .downloaded is False :
140
140
return True
141
141
142
- if os .getenv ("NO_NETWORK" ):
142
+ if os .getenv ("NO_NETWORK" ) or os . getenv ( "VALIDATE_PYPROJECT_NO_NETWORK" ) :
143
143
self .downloaded = False
144
144
msg = (
145
145
"Install ``trove-classifiers`` to ensure proper validation. "
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ commands =
68
68
[testenv:generate-validation-code]
69
69
skip_install = True
70
70
deps =
71
- validate-pyproject[all]==0.6.1
71
+ validate-pyproject[all]==0.7
72
72
commands =
73
73
python -m tools.generate_validation_code
74
74
You can’t perform that action at this time.
0 commit comments