Skip to content

Commit

Permalink
fix requirements.txt with hatch run compile
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Jun 27, 2024
1 parent 6e48489 commit 67b35ae
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,13 @@ Automatically format Python code with ruff and black, and TypeScript code with p
### 🆙 Upgrading dependencies
For the python backend, update the locked dependencies in `backend/requirements.txt` to the latest available (accepted ranges can be updated inside the `backend/pyproject.toml` file):
```bash
cd backend
hatch run compile
```
For the NextJS frontend:
```bash
Expand Down
22 changes: 19 additions & 3 deletions backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#
# pip-compile --output-file=requirements.txt pyproject.toml
#
annotated-types==0.7.0
# via pydantic
anyio==4.3.0
# via
# httpx
Expand Down Expand Up @@ -31,7 +33,11 @@ cryptography==42.0.5
# decentriq-platform
# pyopenssl
# python-jose
decentriq-platform==0.24.4
curies==0.7.9
# via cohort-explorer-backend (pyproject.toml)
decentriq-dcr-compiler==0.7.1
# via decentriq-platform
decentriq-platform==0.27.2
# via cohort-explorer-backend (pyproject.toml)
defusedxml==0.7.1
# via odfpy
Expand Down Expand Up @@ -92,10 +98,13 @@ pyasn1==0.5.1
# rsa
pycparser==2.21
# via cffi
pydantic==1.10.14
pydantic==2.7.4
# via
# curies
# decentriq-dcr-compiler
# fastapi
pydantic-core==2.18.4
# via pydantic
pyopenssl==24.0.0
# via decentriq-platform
pyoxigraph==0.3.22
Expand All @@ -114,6 +123,8 @@ python-jose[cryptography]==3.3.0
# via cohort-explorer-backend (pyproject.toml)
python-multipart==0.0.9
# via cohort-explorer-backend (pyproject.toml)
pytrie==0.4.0
# via curies
pytz==2024.1
# via pandas
pyxlsb==1.0.10
Expand All @@ -125,7 +136,9 @@ rdflib==7.0.0
# oxrdflib
# sparqlwrapper
requests==2.31.0
# via decentriq-platform
# via
# curies
# decentriq-platform
rsa==4.9
# via python-jose
sgx-ias-structs==0.1.9
Expand All @@ -139,6 +152,8 @@ sniffio==1.3.0
# via
# anyio
# httpx
sortedcontainers==2.4.0
# via pytrie
sparqlwrapper==2.0.0
# via cohort-explorer-backend (pyproject.toml)
sqloxide==0.1.43
Expand All @@ -151,6 +166,7 @@ typing-extensions==4.9.0
# decentriq-platform
# fastapi
# pydantic
# pydantic-core
# uvicorn
tzdata==2024.1
# via pandas
Expand Down

0 comments on commit 67b35ae

Please sign in to comment.