File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 19
19
from paver .easy import *
20
20
import paver .setuputils
21
21
paver .setuputils .install_distutils_tasks ()
22
- import paver .doctools
22
+ # import paver.doctools
23
23
try :
24
- import docpaver
24
+ from sphinxcontrib import paverutils
25
25
except :
26
26
import warnings
27
- warnings .warn ('docpaver was not found, will not be able to produce documentation' )
27
+ warnings .warn ('sphinxcontrib.paverutils was not found, you will not be able to produce documentation' )
28
28
29
29
# What project are we building?
30
30
PROJECT = 'virtualenvwrapper'
31
- VERSION = '1.17'
31
+ VERSION = '1.17.1 '
32
32
os .environ ['VERSION' ] = VERSION
33
33
34
34
# Read the long description to give to setup
123
123
@task
124
124
def html (options ):
125
125
# Build the docs
126
- docpaver .html (options )
126
+ paverutils .html (options )
127
127
# Move them into place for packaging
128
128
destdir = path (PROJECT ) / 'docs'
129
129
destdir .rmtree ()
@@ -142,7 +142,7 @@ def website(options):
142
142
dest .dirname ().mkdir ()
143
143
src .copy (dest )
144
144
# Build the docs
145
- docpaver .run_sphinx (options , 'website' )
145
+ paverutils .run_sphinx (options , 'website' )
146
146
return
147
147
148
148
def remake_directories (* dirnames ):
You can’t perform that action at this time.
0 commit comments