Skip to content

Commit

Permalink
Update makefile and deps
Browse files Browse the repository at this point in the history
  • Loading branch information
duarteocarmo committed Nov 10, 2023
1 parent ad37061 commit bf22991
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ api:
build:
python -m pip install --upgrade pip
python -m pip install pip-tools
pip-compile --resolver=backtracking --output-file=requirements.txt pyproject.toml
pip-compile --resolver=backtracking --output-file=requirements-dev.txt pyproject.toml
pip-compile --output-file=requirements.txt pyproject.toml
pip-compile --extra=dev --output-file=requirements-dev.txt pyproject.toml

## Build the docker image
docker:
Expand Down
69 changes: 62 additions & 7 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,90 @@
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile --output-file=requirements-dev.txt --resolver=backtracking pyproject.toml
# pip-compile --extra=dev --output-file=requirements-dev.txt pyproject.toml
#
anyio==3.6.2
# via starlette
# via
# httpx
# starlette
black==23.11.0
# via boilerplate (pyproject.toml)
certifi==2023.7.22
# via
# httpcore
# httpx
click==8.1.3
# via uvicorn
# via
# black
# uvicorn
coverage[toml]==7.3.2
# via pytest-cov
exceptiongroup==1.1.3
# via pytest
fastapi==0.92.0
# via boilerplate (pyproject.toml)
h11==0.14.0
# via uvicorn
# via
# httpcore
# uvicorn
httpcore==1.0.1
# via httpx
httpx==0.25.1
# via boilerplate (pyproject.toml)
idna==3.4
# via anyio
# via
# anyio
# httpx
iniconfig==2.0.0
# via pytest
mypy-extensions==1.0.0
# via black
numpy==1.24.2
# via pandas
packaging==23.2
# via
# black
# pytest
pandas==1.5.3
# via boilerplate (pyproject.toml)
pathspec==0.11.2
# via black
platformdirs==3.11.0
# via black
pluggy==1.3.0
# via pytest
pydantic==1.10.5
# via fastapi
pytest==7.4.3
# via
# boilerplate (pyproject.toml)
# pytest-cov
pytest-cov==4.1.0
# via boilerplate (pyproject.toml)
python-dateutil==2.8.2
# via pandas
pytz==2022.7.1
# via pandas
ruff==0.1.5
# via boilerplate (pyproject.toml)
six==1.16.0
# via python-dateutil
sniffio==1.3.0
# via anyio
# via
# anyio
# httpx
starlette==0.25.0
# via fastapi
tomli==2.0.1
# via
# black
# coverage
# pytest
typing-extensions==4.5.0
# via pydantic
# via
# black
# pydantic
uvicorn==0.20.0
# via boilerplate (pyproject.toml)
watchdog==3.0.0
# via boilerplate (pyproject.toml)
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile --output-file=requirements.txt --resolver=backtracking pyproject.toml
# pip-compile --output-file=requirements.txt pyproject.toml
#
anyio==3.6.2
# via starlette
Expand Down

0 comments on commit bf22991

Please sign in to comment.