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

1.0.0 #27

Merged
merged 2 commits into from
Jan 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 6 additions & 16 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TO EDIT
TAG ?= v0.25.1
TAG ?= v1.0.0
GH_USERNAME ?= TomAugspurger
PANDAS_VERSION=$(TAG:v%=%)
PANDAS_BASE_VERSION=$(shell echo $(PANDAS_VERSION) | awk -F '.' '{OFS="."} { print $$1, $$2}')
Expand Down Expand Up @@ -95,7 +95,7 @@ pip-test: pandas/dist/$(TARGZ)
# subprocess.CalledProcessError: Command '('pdflatex', '-interaction=nonstopmode', 'pandas.tex')' returned non-zero exit status 1.

doc:
docker run -it --rm \
docker run -it \
--name=pandas-docs \
-v ${CURDIR}/pandas:/pandas \
-v ${CURDIR}/scripts/build-docs.sh:/build-docs.sh \
Expand All @@ -116,23 +116,13 @@ link-version:
push-doc: | upload-doc link-stable link-version

website:
# TODO: handle previous.rst, latest.rst
pushd pandas-website && \
../scripts/update-website.py $(TAG) && \
git add . && \
git commit -m "RLS $(TAG)" && \
make html && \
pushd pandas/web && \
./pandas_web.py pandas
popd



make push-website:
pushd pandas-website && \
git push upstream master && \
make html && \
make upload && \
popd

push-website:
rsync -ravzI -e ssh pandas/web/build/* pandas.pydata.org:/usr/share/nginx/pandas/

push-tag:
pushd pandas && ../scripts/push-tag.py $(TAG) && popd
Expand Down
7 changes: 7 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,10 @@ dependencies:
- conda-forge-pinning
- lxml
- twine
# web
- markdown
- feedparser
- pyyaml
- requests
- jinja2