File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ def install_core_requirements(self):
100
100
'sphinx==1.3.4' ,
101
101
'Pygments==2.0.2' ,
102
102
'setuptools==18.6.1' ,
103
- 'docutils==0.11 ' ,
103
+ 'docutils==0.12 ' ,
104
104
'mkdocs==0.14.0' ,
105
105
'mock==1.0.1' ,
106
106
'pillow==2.6.1' ,
@@ -174,22 +174,22 @@ def setup_base(self):
174
174
shutil .rmtree (version_path )
175
175
self .build_env .run (
176
176
'conda' ,
177
+ 'env' ,
177
178
'create' ,
178
- '--yes' ,
179
179
'--name' ,
180
180
self .version .slug ,
181
- 'python={python_version}' .format (python_version = self .config .python_version ),
181
+ '--file' ,
182
+ self .config .conda_file ,
182
183
bin_path = None , # Don't use conda bin that doesn't exist yet
183
184
)
184
185
185
186
def install_core_requirements (self ):
186
- conda_env_path = os .path .join (self .project .doc_path , 'conda' )
187
187
188
188
# Use conda for requirements it packages
189
189
requirements = [
190
190
'sphinx==1.3.4' ,
191
191
'Pygments==2.0.2' ,
192
- 'docutils==0.11 ' ,
192
+ 'docutils==0.12 ' ,
193
193
'mock==1.0.1' ,
194
194
'pillow==3.0.0' ,
195
195
'sphinx_rtd_theme==0.1.7' ,
@@ -231,7 +231,6 @@ def install_core_requirements(self):
231
231
)
232
232
233
233
def install_user_requirements (self ):
234
- conda_env_path = os .path .join (self .project .doc_path , 'conda' )
235
234
self .build_env .run (
236
235
'conda' ,
237
236
'env' ,
You can’t perform that action at this time.
0 commit comments