This repository was archived by the owner on Jun 12, 2023. It is now read-only.
File tree 2 files changed +26
-2
lines changed
2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1
1
FROM continuumio/miniconda3:latest
2
2
3
- RUN apt-get update && apt-get install make && apt-get clean
3
+ RUN apt-get update && \
4
+ apt-get install -y make rsync && \
5
+ apt-get clean
4
6
5
7
RUN conda update conda -y
6
8
Original file line number Diff line number Diff line change @@ -213,7 +213,29 @@ exit
213
213
214
214
Copy the built doc files to host and manually inspect html and pdf docs.
215
215
216
+ ** first remove the local pandas-docs directory (just use file manager)**
217
+ <!--
218
+ TODO add steps to clean the pandas-docs directory from the docker container before copy
219
+ -->
220
+ ```
221
+ docker run -t --rm -v %cd%:/local -v pandas-release:/pandas-release pandas-release /bin/bash -c "cp -r /pandas-release/pandas/doc/build/ /local/pandas-docs"
222
+ ```
223
+
224
+ ## Upload the docs
225
+
226
+ restart the release container
227
+
216
228
```
217
- docker run -it --rm -v %cd%:/local -v pandas-release:/pandas-release pandas-release /bin/bash -c "cp -r /pandas-release/pandas/doc/build/ /local/pandas-docs"
229
+ docker start pandas-release -i
230
+
231
+ # TODO upload ssh keys
232
+
233
+ make upload-doc
234
+
235
+ # TODO add steps to update website
236
+
218
237
```
219
238
239
+ ## Upload the Binarys to PyPI
240
+
241
+
You can’t perform that action at this time.
0 commit comments