Skip to content

Commit d7e6e56

Browse files
Rename constraints to requirements (#243)
1 parent ef39c7e commit d7e6e56

File tree

6 files changed

+93
-93
lines changed

6 files changed

+93
-93
lines changed

.config/constraints.txt

Lines changed: 0 additions & 87 deletions
This file was deleted.

.config/requirements.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ansible-core>=2.14
2+
pytest>=6,<8.0.0
3+
packaging

.config/requirements.txt

Lines changed: 87 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,87 @@
1-
ansible-core>=2.14
2-
pytest>=6,<8.0.0
3-
packaging
1+
#
2+
# This file is autogenerated by pip-compile with Python 3.10
3+
# by the following command:
4+
#
5+
# pip-compile --extra=docs --extra=test --no-annotate --output-file=.config/requirements.txt --strip-extras --unsafe-package=ruamel-yaml-clib pyproject.toml
6+
#
7+
ansible-compat==4.1.10
8+
ansible-core==2.16.2
9+
attrs==23.2.0
10+
babel==2.14.0
11+
beautifulsoup4==4.12.2
12+
bracex==2.4
13+
cairocffi==1.6.1
14+
cairosvg==2.7.1
15+
certifi==2023.11.17
16+
cffi==1.16.0
17+
charset-normalizer==3.3.2
18+
click==8.1.7
19+
click-help-colors==0.9.4
20+
colorama==0.4.6
21+
coverage==7.4.0
22+
cryptography==41.0.7
23+
csscompressor==0.9.5
24+
cssselect2==0.7.0
25+
defusedxml==0.7.1
26+
enrich==1.2.7
27+
exceptiongroup==1.2.0
28+
ghp-import==2.1.0
29+
griffe==0.38.1
30+
htmlmin2==0.1.13
31+
idna==3.6
32+
iniconfig==2.0.0
33+
jinja2==3.1.2
34+
jsmin==3.0.1
35+
jsonschema==4.20.0
36+
jsonschema-specifications==2023.12.1
37+
markdown==3.5.1
38+
markdown-exec==1.8.0
39+
markdown-include==0.8.1
40+
markdown-it-py==3.0.0
41+
markupsafe==2.1.3
42+
mdurl==0.1.2
43+
mergedeep==1.3.4
44+
mkdocs==1.5.3
45+
mkdocs-ansible==0.2.0
46+
mkdocs-autorefs==0.5.0
47+
mkdocs-gen-files==0.5.0
48+
mkdocs-htmlproofer-plugin==1.0.0
49+
mkdocs-material==9.5.3
50+
mkdocs-material-extensions==1.3.1
51+
mkdocs-minify-plugin==0.7.2
52+
mkdocs-monorepo-plugin==1.1.0
53+
mkdocstrings==0.24.0
54+
mkdocstrings-python==1.7.5
55+
molecule==6.0.3
56+
packaging==23.2
57+
paginate==0.5.6
58+
pathspec==0.12.1
59+
pillow==10.2.0
60+
pipdeptree==2.13.1
61+
platformdirs==4.1.0
62+
pluggy==1.3.0
63+
pycparser==2.21
64+
pygments==2.17.2
65+
pymdown-extensions==10.7
66+
pytest==7.4.4
67+
pytest-plus==0.6.0
68+
python-dateutil==2.8.2
69+
python-slugify==8.0.1
70+
pyyaml==6.0.1
71+
pyyaml-env-tag==0.1
72+
referencing==0.32.1
73+
regex==2023.12.25
74+
requests==2.31.0
75+
resolvelib==1.0.1
76+
rich==13.7.0
77+
rpds-py==0.16.2
78+
six==1.16.0
79+
soupsieve==2.5
80+
subprocess-tee==0.4.1
81+
text-unidecode==1.3
82+
tinycss2==1.2.1
83+
tomli==2.0.1
84+
urllib3==2.1.0
85+
watchdog==3.0.0
86+
wcmatch==8.5
87+
webencodings==0.5.1

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ repos:
104104
name: deps
105105
alias: deps
106106
always_run: true
107-
entry: pip-compile --resolver=backtracking -q --no-annotate --output-file=.config/constraints.txt pyproject.toml --extra docs --extra test --strip-extras --unsafe-package ruamel-yaml-clib
107+
entry: pip-compile --resolver=backtracking -q --no-annotate --output-file=.config/requirements.txt pyproject.toml --extra docs --extra test --strip-extras --unsafe-package ruamel-yaml-clib
108108
files: ^.config\/.*requirements.*$
109109
language: python
110110
language_version: "3.10" # minimal we support officially

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ lines-between-types = 1 # Separate import/from with 1 line
169169
optional-dependencies.docs = { file = [".config/docs-requirements.txt"] }
170170
optional-dependencies.test = { file = [".config/test-requirements.txt"] }
171171
optional-dependencies.lock = { file = [".config/lock-requirements.txt"] }
172-
dependencies = { file = [".config/requirements.txt"] }
172+
dependencies = { file = [".config/requirements.in"] }
173173

174174
[tool.setuptools_scm]
175175
local_scheme = "no-local-version"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ setenv =
3838
COVERAGE_FILE = {env:COVERAGE_FILE:{toxworkdir}/.coverage.{envname}}
3939
COVERAGE_PROCESS_START={toxinidir}/pyproject.toml
4040
FORCE_COLOR = 1
41-
PIP_CONSTRAINT = {toxinidir}/.config/constraints.txt
41+
PIP_CONSTRAINT = {toxinidir}/.config/requirements.txt
4242
devel: PIP_CONSTRAINT = /dev/null
4343
extras =
4444
test

0 commit comments

Comments
 (0)