Skip to content

Commit

Permalink
Move everything to .pip to match other projects
Browse files Browse the repository at this point in the history
  • Loading branch information
mdp committed Aug 18, 2023
1 parent edc4600 commit d25f870
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
File renamed without changes.

0 comments on commit d25f870

Please sign in to comment.