Skip to content

Commit d8c394e

Browse files
Install dev-tools via requirements.txt
Signed-off-by: Abhishek Kumar <abhishek.kasyap09@gmail.com>
1 parent 5700c80 commit d8c394e

3 files changed

Lines changed: 3 additions & 16 deletions

File tree

etc/conf/requirements_base.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
-r requirements_all.txt
2+
-r dev/requirements_base.txt
23
#-e .

etc/configure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
bin_dir_name = 'bin'
132132

133133
# set to True to trace command line executaion
134-
TRACE = False
134+
TRACE = True
135135

136136

137137
def call(cmd, root_dir):
@@ -249,7 +249,7 @@ def create_virtualenv(std_python, root_dir, tpp_dirs=(), quiet=False):
249249
# search the virtualenv.pyz app in the tpp_dirs. keep the first found
250250
venv_pyz = None
251251
for tpd in tpp_dirs:
252-
if tpd.startswith('https'):
252+
if tpd.startswith('https') and not on_win:
253253
continue
254254
venv = os.path.join(root_dir, tpd, 'virtualenv.pyz')
255255
if os.path.exists(venv):

setup.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -206,20 +206,6 @@ def read(*names, **kwargs):
206206
# used by yg.lockfile
207207
'contextlib2', 'pytz', 'tempora', 'jaraco.functools',
208208
'zc.lockfile >= 2.0.0, < 3.0.0',
209-
210-
#Fix Me later
211-
'pytest',
212-
'aboutcode-toolkit',
213-
'apipkg',
214-
'py',
215-
'colorama',
216-
'execnet',
217-
'pytest-xdist',
218-
'bumpversion',
219-
'coverage',
220-
'pytest-rerunfailures',
221-
'pytest-forked',
222-
'pytest-cov',
223209
],
224210

225211
entry_points={

0 commit comments

Comments
 (0)