File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 77 "customizations" : {
88 "vscode" : {
99 "extensions" : [
10- " ms-python.python"
10+ " ms-python.python" ,
11+ " ms-python.black-formatter"
1112 ],
1213 "settings" : {
1314 "extensions.verifySignature" : false
Original file line number Diff line number Diff line change 99 "python.testing.unittestEnabled" : true ,
1010 "python.testing.pytestArgs" : [
1111 " ."
12- ]
12+ ],
13+ "editor.formatOnSave" : true ,
14+ "[python]" : {
15+ "editor.defaultFormatter" : " ms-python.black-formatter"
16+ },
17+ "python.formatting.provider" : " none"
1318}
Original file line number Diff line number Diff line change @@ -3,5 +3,7 @@ RUN apt-get update && apt-get install -y make libgl1-mesa-glx && rm -rf /var/lib
33WORKDIR /roboflow-python
44COPY .devcontainer/bashrc_ext /root/bashrc_ext
55RUN echo "source /root/bashrc_ext" >> ~/.bashrc
6- COPY . .
6+ COPY ./setup.py ./pyproject.toml ./README.md ./requirements.txt ./
7+ COPY roboflow/__init__.py ./roboflow/__init__.py
78RUN pip install -e ".[dev]"
9+ COPY . .
You can’t perform that action at this time.
0 commit comments