diff --git a/.github/workflows/qa.yaml b/.github/workflows/qa.yaml index d2efce2..506f23e 100644 --- a/.github/workflows/qa.yaml +++ b/.github/workflows/qa.yaml @@ -22,7 +22,7 @@ jobs: - name: Install lint requirements run: | - pip install -r openzim/lint_requirements.txt + pip install -r openzim/lint_requirements.pip - name: Check black formatting run: | diff --git a/Dockerfile b/Dockerfile index dab3cdb..4c12b35 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,8 @@ RUN yarn build FROM python:3.11-buster WORKDIR /src -COPY openzim/requirements.txt /src -RUN pip install -r requirements.txt --no-cache-dir +COPY openzim/requirements.pip /src +RUN pip install -r requirements.pip --no-cache-dir COPY openzim /src COPY --from=client /src /src/client diff --git a/Makefile b/Makefile index bd7c03e..8fff198 100644 --- a/Makefile +++ b/Makefile @@ -32,8 +32,8 @@ clean: setup: cd openzim && \ - pip install -r requirements.txt \ - pip install -r lint_requirements.txt + pip install -r requirements.pip \ + pip install -r lint_requirements.pip lint: cd openzim diff --git a/openzim/lint_requirements.txt b/openzim/lint_requirements.pip similarity index 100% rename from openzim/lint_requirements.txt rename to openzim/lint_requirements.pip