Skip to content

Commit 9df08fa

Browse files
committed
Remove references to unexisting task
1 parent 3ce9413 commit 9df08fa

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

pavement.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def test_parallel():
150150

151151

152152
@task
153-
@needs('_prepare_build', 'setuptools.command.install')
153+
@needs('setuptools.command.install')
154154
def install():
155155
"""Installs development version and dependencies"""
156156
try:
@@ -163,7 +163,7 @@ def install():
163163

164164

165165
@task
166-
@needs('_prepare_build', 'setuptools.command.register')
166+
@needs('setuptools.command.register')
167167
def register():
168168
"""Register current version to Python package index"""
169169
pass
@@ -189,8 +189,7 @@ def sdist():
189189

190190

191191
@task
192-
@needs('_windows', 'clean', '_prepare_build',
193-
'setuptools.command.bdist_wininst')
192+
@needs('_windows', 'clean', 'setuptools.command.bdist_wininst')
194193
def wininst():
195194
"""Creates Windows installer with bundled dependencies"""
196195
_after_distribution()

0 commit comments

Comments
 (0)