This repository was archived by the owner on Jun 12, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-16
lines changed Expand file tree Collapse file tree 2 files changed +13
-16
lines changed Original file line number Diff line number Diff line change 1
1
# TO EDIT
2
- TAG ?= v0.25.1
2
+ TAG ?= v1.0.0
3
3
GH_USERNAME ?= TomAugspurger
4
4
PANDAS_VERSION=$(TAG:v% =%)
5
5
PANDAS_BASE_VERSION =$(shell echo $(PANDAS_VERSION ) | awk -F '.' '{OFS="."} { print $$1, $$2}')
@@ -95,7 +95,7 @@ pip-test: pandas/dist/$(TARGZ)
95
95
# subprocess.CalledProcessError: Command '('pdflatex', '-interaction=nonstopmode', 'pandas.tex')' returned non-zero exit status 1.
96
96
97
97
doc :
98
- docker run -it --rm \
98
+ docker run -it \
99
99
--name=pandas-docs \
100
100
-v ${CURDIR} /pandas:/pandas \
101
101
-v ${CURDIR} /scripts/build-docs.sh:/build-docs.sh \
@@ -116,23 +116,13 @@ link-version:
116
116
push-doc : | upload-doc link-stable link-version
117
117
118
118
website :
119
- # TODO: handle previous.rst, latest.rst
120
- pushd pandas-website && \
121
- ../scripts/update-website.py $(TAG ) && \
122
- git add . && \
123
- git commit -m " RLS $( TAG) " && \
124
- make html && \
119
+ pushd pandas/web && \
120
+ ./pandas_web.py pandas
125
121
popd
126
122
127
123
128
-
129
- make push-website :
130
- pushd pandas-website && \
131
- git push upstream master && \
132
- make html && \
133
- make upload && \
134
- popd
135
-
124
+ push-website :
125
+ rsync -ravzI -e ssh pandas/web/build/* pandas.pydata.org:/usr/share/nginx/pandas/
136
126
137
127
push-tag :
138
128
pushd pandas && ../scripts/push-tag.py $(TAG ) && popd
Original file line number Diff line number Diff line change @@ -9,3 +9,10 @@ dependencies:
9
9
- conda-forge-pinning
10
10
- lxml
11
11
- twine
12
+ # web
13
+ - markdown
14
+ - feedparser
15
+ - pyyaml
16
+ - requests
17
+ - jinja2
18
+
You can’t perform that action at this time.
0 commit comments