File tree 7 files changed +14
-25
lines changed
7 files changed +14
-25
lines changed Original file line number Diff line number Diff line change 1
1
libusb1 == 1.6.6
2
- hexdump
3
- pycrypto
4
- tqdm
2
+ numpy == 1.17.2
3
+ hexdump >= 3.3
4
+ pycrypto == 2.6.1
5
+ tqdm >= 4.14.0
5
6
nose
6
7
parameterized
7
8
requests
9
+ flake8 == 3.7.8
10
+ pylint == 2.4.2
11
+ cffi == 1.11.4
Original file line number Diff line number Diff line change @@ -14,5 +14,4 @@ RUN pyenv install 3.7.3
14
14
RUN pyenv global 3.7.3
15
15
RUN pyenv rehash
16
16
17
- COPY tests/safety/requirements.txt /panda/tests/safety/requirements.txt
18
17
COPY . /panda
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ RUN pyenv install 3.7.3
14
14
RUN pyenv global 3.7.3
15
15
RUN pyenv rehash
16
16
17
- COPY tests/linter_python/ requirements.txt requirements.txt
18
- RUN pip install -r requirements.txt
17
+ COPY requirements.txt /tmp/
18
+ RUN pip install -r /tmp/ requirements.txt
19
19
COPY . /panda
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:16.04
2
2
3
3
RUN apt-get update && apt-get install -y make python python-pip git
4
- COPY tests/safety/ requirements.txt /panda/tests/safety/requirements.txt
5
- RUN pip install -r /panda/tests/safety /requirements.txt
4
+ COPY requirements.txt /tmp/
5
+ RUN pip install -r /tmp /requirements.txt
6
6
COPY . /panda
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ RUN pyenv install 3.7.3
14
14
RUN pyenv global 3.7.3
15
15
RUN pyenv rehash
16
16
17
- COPY tests/safety/requirements.txt requirements.txt
18
- RUN pip install -r requirements.txt
17
+ COPY requirements.txt /tmp/
18
+ RUN pip install -r /tmp/requirements.txt
19
+
19
20
COPY . /panda
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments