-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure root requirements for monorepo
- Loading branch information
1 parent
ef8785d
commit 363ff2c
Showing
6 changed files
with
125 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,57 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.9 | ||
# by the following command: | ||
# | ||
# pip-compile --output-file=requirements-dev.txt requirements/dev.txt | ||
# | ||
black==24.4.2 | ||
# via -r requirements/dev.txt | ||
build==1.2.1 | ||
# via pip-tools | ||
click==8.1.7 | ||
# via | ||
# black | ||
# pip-tools | ||
flake8==7.1.0 | ||
# via -r requirements/dev.txt | ||
importlib-metadata==8.0.0 | ||
# via build | ||
isort==5.13.2 | ||
# via -r requirements/dev.txt | ||
mccabe==0.7.0 | ||
# via flake8 | ||
mypy-extensions==1.0.0 | ||
# via black | ||
packaging==24.1 | ||
# via | ||
# black | ||
# build | ||
pathspec==0.12.1 | ||
# via black | ||
pip-tools==7.4.1 | ||
# via -r requirements/dev.txt | ||
platformdirs==4.2.2 | ||
# via black | ||
pycodestyle==2.12.0 | ||
# via flake8 | ||
pyflakes==3.2.0 | ||
# via flake8 | ||
pyproject-hooks==1.1.0 | ||
# via | ||
# build | ||
# pip-tools | ||
tomli==2.0.1 | ||
# via | ||
# black | ||
# build | ||
# pip-tools | ||
typing-extensions==4.12.2 | ||
# via black | ||
wheel==0.43.0 | ||
# via pip-tools | ||
zipp==3.19.2 | ||
# via importlib-metadata | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# pip | ||
# setuptools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
pip==24.1.1 | ||
pip~=24.1 | ||
pip-tools~=7.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.9 | ||
# by the following command: | ||
# | ||
# pip-compile --output-file=requirements.txt requirements/all.txt | ||
# | ||
black==24.4.2 | ||
# via -r requirements/dev.in | ||
click==8.1.7 | ||
# via black | ||
coverage[toml]==7.5.4 | ||
# via pytest-cov | ||
exceptiongroup==1.2.1 | ||
# via pytest | ||
flake8==7.1.0 | ||
# via -r requirements/dev.in | ||
iniconfig==2.0.0 | ||
# via pytest | ||
isort==5.13.2 | ||
# via -r requirements/dev.in | ||
jinja2==3.1.4 | ||
# via pytest-html | ||
markupsafe==2.1.5 | ||
# via jinja2 | ||
mccabe==0.7.0 | ||
# via flake8 | ||
mypy-extensions==1.0.0 | ||
# via black | ||
packaging==24.1 | ||
# via | ||
# black | ||
# pytest | ||
pathspec==0.12.1 | ||
# via black | ||
platformdirs==4.2.2 | ||
# via black | ||
pluggy==1.5.0 | ||
# via pytest | ||
pycodestyle==2.12.0 | ||
# via flake8 | ||
pyflakes==3.2.0 | ||
# via flake8 | ||
pytest==8.2.2 | ||
# via | ||
# -r requirements/test.in | ||
# pytest-cov | ||
# pytest-html | ||
# pytest-metadata | ||
pytest-cov==5.0.0 | ||
# via -r requirements/test.in | ||
pytest-html==4.1.1 | ||
# via -r requirements/test.in | ||
pytest-metadata==3.1.1 | ||
# via pytest-html | ||
tomli==2.0.1 | ||
# via | ||
# black | ||
# coverage | ||
# pytest | ||
typing-extensions==4.12.2 | ||
# via black |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-r dev.in | ||
-r test.in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
black~=24.4 | ||
flake8~=7.1 | ||
isort~=5.13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pytest~=8.2 | ||
pytest-html~=4.1 | ||
pytest-cov~=5.0 |