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

Commit bc65702

Browse files
Merge pull request #27 from TomAugspurger/1.0.0
1.0.0
2 parents c88d679 + 39ef777 commit bc65702

File tree

2 files changed

+13
-16
lines changed

2 files changed

+13
-16
lines changed

Makefile

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# TO EDIT
2-
TAG ?= v0.25.1
2+
TAG ?= v1.0.0
33
GH_USERNAME ?= TomAugspurger
44
PANDAS_VERSION=$(TAG:v%=%)
55
PANDAS_BASE_VERSION=$(shell echo $(PANDAS_VERSION) | awk -F '.' '{OFS="."} { print $$1, $$2}')
@@ -95,7 +95,7 @@ pip-test: pandas/dist/$(TARGZ)
9595
# subprocess.CalledProcessError: Command '('pdflatex', '-interaction=nonstopmode', 'pandas.tex')' returned non-zero exit status 1.
9696

9797
doc:
98-
docker run -it --rm \
98+
docker run -it \
9999
--name=pandas-docs \
100100
-v ${CURDIR}/pandas:/pandas \
101101
-v ${CURDIR}/scripts/build-docs.sh:/build-docs.sh \
@@ -116,23 +116,13 @@ link-version:
116116
push-doc: | upload-doc link-stable link-version
117117

118118
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
125121
popd
126122

127123

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/
136126

137127
push-tag:
138128
pushd pandas && ../scripts/push-tag.py $(TAG) && popd

environment.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,10 @@ dependencies:
99
- conda-forge-pinning
1010
- lxml
1111
- twine
12+
# web
13+
- markdown
14+
- feedparser
15+
- pyyaml
16+
- requests
17+
- jinja2
18+

0 commit comments

Comments
 (0)