File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -96,16 +96,16 @@ _check_venv_active:
96
96
@python3 -c " import sys; assert sys.base_prefix!=sys.prefix"
97
97
98
98
99
- .PHONY : install-dev
100
- install-dev : python-client _check_venv_active # # installs osparc_client and osparc in edit mode
101
- python -m pip install -e artifacts/client
102
- python -m pip install -e .
103
- pip list
104
99
100
+ .PHONY : .install-dev-reqs
101
+ .install-dev-reqs : _check_venv_active
102
+ uv pip install -r $(CLIENTS_PYTHON_DIR ) /requirements/dev.txt
105
103
106
- # .PHONY: install-dev
107
- # install-dev: _check_venv_active ## install packages for development
108
- # pip install -r requirements/dev.txt
104
+ .PHONY : install-dev
105
+ install-dev : _check_venv_active .install-dev-reqs python-client # # installs osparc_client and osparc in edit mode
106
+ uv pip install -e artifacts/client
107
+ uv pip install -e .
108
+ uv pip list
109
109
110
110
.PHONY : install-unit-test
111
111
install-unit-test : _check_venv_active # # install packages for unit testing client
@@ -116,7 +116,7 @@ install-e2e-test: _check_venv_active ## install packages for e2e testing client
116
116
uv pip install -r $(CLIENTS_PYTHON_DIR ) /requirements/e2e-test.txt
117
117
118
118
.PHONY : install-doc
119
- install-doc : _check_venv_active install-dev # # install packages for generating documentation
119
+ install-doc : _check_venv_active . install-dev-reqs # # install packages for generating documentation
120
120
uv pip install -r $(CLIENTS_PYTHON_DIR ) /requirements/doc.txt
121
121
122
122
Original file line number Diff line number Diff line change 1
1
-r ../../../requirements.txt
2
+ black
2
3
faker
3
4
pipdeptree
4
5
pipreqs
You can’t perform that action at this time.
0 commit comments