Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore : Mise à jour des dépendances #291

Merged
merged 3 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions analyse/Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
PIP_COMPILE := pipx run uv pip compile pyproject.toml --quiet
include ../requirements.mk

ifeq ($(filter upgrade,$(MAKECMDGOALS)),upgrade)
PIP_COMPILE += --upgrade
endif

.PHONY: all base uv upgrade
dev test: ;

all: base

base:
$(PIP_COMPILE) --output-file=requirements/requirements.txt

26 changes: 12 additions & 14 deletions analyse/requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ beautifulsoup4==4.12.3
# via nbconvert
bleach==6.1.0
# via nbconvert
certifi==2024.7.4
certifi==2024.8.30
# via
# httpcore
# httpx
# requests
cffi==1.17.0
cffi==1.17.1
# via argon2-cffi-bindings
charset-normalizer==3.3.2
# via requests
Expand All @@ -41,7 +41,7 @@ decorator==5.1.1
# via ipython
defusedxml==0.7.1
# via nbconvert
executing==2.0.1
executing==2.1.0
# via stack-data
fastjsonschema==2.20.0
# via nbformat
Expand All @@ -51,17 +51,17 @@ h11==0.14.0
# via httpcore
httpcore==1.0.5
# via httpx
httpx==0.27.0
httpx==0.27.2
# via jupyterlab
idna==3.7
idna==3.8
# via
# anyio
# httpx
# jsonschema
# requests
ipykernel==6.29.5
# via jupyterlab
ipython==8.26.0
ipython==8.27.0
# via ipykernel
isoduration==20.11.0
# via jsonschema
Expand Down Expand Up @@ -111,7 +111,7 @@ jupyter-server==2.14.2
# notebook-shim
jupyter-server-terminals==0.5.3
# via jupyter-server
jupyterlab==4.2.4
jupyterlab==4.2.5
# via notebook
jupyterlab-pygments==0.3.0
# via nbconvert
Expand Down Expand Up @@ -140,7 +140,7 @@ nbformat==5.10.4
# nbconvert
nest-asyncio==1.6.0
# via ipykernel
notebook==7.2.1
notebook==7.2.2
# via data-inclusion-analyse (pyproject.toml)
notebook-shim==0.2.4
# via
Expand All @@ -161,7 +161,7 @@ parso==0.8.4
# via jedi
pexpect==4.9.0
# via ipython
platformdirs==4.2.2
platformdirs==4.3.2
# via jupyter-core
prometheus-client==0.20.0
# via jupyter-server
Expand Down Expand Up @@ -189,7 +189,7 @@ python-json-logger==2.0.7
# via jupyter-events
pyyaml==6.0.2
# via jupyter-events
pyzmq==26.1.1
pyzmq==26.2.0
# via
# ipykernel
# jupyter-client
Expand All @@ -215,7 +215,7 @@ rpds-py==0.20.0
# referencing
send2trash==1.8.3
# via jupyter-server
setuptools==72.2.0
setuptools==74.1.2
# via jupyterlab
six==1.16.0
# via
Expand Down Expand Up @@ -259,10 +259,8 @@ traitlets==5.14.3
# nbclient
# nbconvert
# nbformat
types-python-dateutil==2.9.0.20240316
types-python-dateutil==2.9.0.20240906
# via arrow
typing-extensions==4.12.2
# via ipython
uri-template==1.3.0
# via jsonschema
urllib3==2.2.2
Expand Down
19 changes: 2 additions & 17 deletions api/Makefile
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
PIP_COMPILE := pipx run uv pip compile setup.py --quiet
PIP_TARGET := setup.py

ifeq ($(filter upgrade,$(MAKECMDGOALS)),upgrade)
PIP_COMPILE += --upgrade
endif

.PHONY: all dev base test uv upgrade

all: base dev test

base:
$(PIP_COMPILE) --output-file=requirements/requirements.txt

dev:
$(PIP_COMPILE) --extra=dev --output-file=requirements/dev-requirements.txt

test:
$(PIP_COMPILE) --extra=test --output-file=requirements/test-requirements.txt
include ../requirements.mk
Loading