Skip to content
This repository was archived by the owner on Jun 12, 2023. It is now read-only.

Commit db7b75d

Browse files
wip
1 parent 126cbc1 commit db7b75d

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

docker-files/windows/Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
FROM continuumio/miniconda3:latest
22

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
46

57
RUN conda update conda -y
68

windows.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,29 @@ exit
213213

214214
Copy the built doc files to host and manually inspect html and pdf docs.
215215

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+
216228
```
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+
218237
```
219238

239+
## Upload the Binarys to PyPI
240+
241+

0 commit comments

Comments
 (0)