Skip to content

Commit d243271

Browse files
committed
Removed pipenv
1 parent 0fb0fcf commit d243271

6 files changed

+17
-531
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ repos:
3636
- flake8-future-annotations
3737
- flake8-no-implicit-concat
3838
# - flake8-print
39-
# - flake8-requirements
39+
- flake8-requirements
4040
- flake8-simplify
4141
- flake8-use-fstring
4242
- flake8-use-pathlib

Dockerfile

+2-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@ FROM python:3.8.6
33
WORKDIR /spe_ed
44

55
# Install dependencies
6-
ENV PIP_NO_CACHE_DIR=false
7-
RUN apt-get update && \
8-
apt-get install -y gcc gfortran libopenblas-dev liblapack-dev && \
9-
pip install -U pip pipenv Cython
10-
COPY ["Pipfile", "Pipfile.lock", "./"]
11-
RUN pipenv install --system --deploy --ignore-pipfile
6+
COPY requirements.txt ./
7+
RUN python3 -m pip install --no-cache-dir -r requirements.txt
128

139
# Copy code
1410
COPY . ./

Pipfile

-25
This file was deleted.

0 commit comments

Comments
 (0)