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

Commit e42182d

Browse files
committed
fixup
1 parent d64175a commit e42182d

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

Makefile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# TO EDIT
22
TAG ?= v0.25.0rc0
3-
GH_USERNAME ?= jorisvandenbossche
3+
GH_USERNAME ?= TomAugspurger
44

5-
PANDAS_VERSION=$(TAG:v%=%) # like 0.24.2
5+
PANDAS_VERSION=$(TAG:v%=%) # like 0.24.2
66
PANDAS_BASE_VERSION=$(shell echo '0.24.2' | awk -F '.' '{OFS="."} { print $$1, $$2}') # like 0.24
77
TARGZ=pandas-$(PANDAS_VERSION).tar.gz
88

@@ -14,10 +14,10 @@ SHELL := /bin/bash
1414
# -----------------------------------------------------------------------------
1515

1616
init-repos:
17-
git clone https://github.com/pandas-dev/pandas && git -C pandas remote rename origin upstream && git -C pandas remote add origin https://github.com/$(GH_USERNAME)/pandas
18-
git clone https://github.com/pandas-dev/pandas-website && git -C pandas-website remote rename origin upstream && git -C pandas-website remote add origin https://github.com/$(GH_USERNAME)/pandas-website
19-
git clone https://github.com/conda-forge/pandas-feedstock && git -C pandas-feedstock remote rename origin upstream && git -C pandas-feedstock remote add origin https://github.com/$(GH_USERNAME)/pandas-feedstock
20-
git clone --recursive https://github.com/MacPython/pandas-wheels && git -C pandas-wheels remote rename origin upstream && git -C pandas-wheels remote add origin https://github.com/$(GH_USERNAME)/pandas-wheels
17+
git clone https://github.com/pandas-dev/pandas && git -C pandas remote rename origin upstream && git -C pandas remote add origin https://github.com/$(GH_USERNAME)/pandas
18+
git clone https://github.com/pandas-dev/pandas-website && git -C pandas-website remote rename origin upstream && git -C pandas-website remote add origin https://github.com/$(GH_USERNAME)/pandas-website
19+
git clone https://github.com/conda-forge/pandas-feedstock && git -C pandas-feedstock remote rename origin upstream && git -C pandas-feedstock remote add origin https://github.com/$(GH_USERNAME)/pandas-feedstock
20+
git clone --recursive https://github.com/MacPython/pandas-wheels && git -C pandas-wheels remote rename origin upstream && git -C pandas-wheels remote add origin https://github.com/$(GH_USERNAME)/pandas-wheels
2121

2222
update-repos:
2323
git -C pandas checkout master && git -C pandas pull
@@ -58,7 +58,6 @@ pandas/dist/$(TARGZ):
5858
-v ${CURDIR}/scripts:/scripts \
5959
pandas-build \
6060
sh /scripts/build_sdist.sh
61-
sudo chown $$(id -u):$$(id -g) pandas/dist/ --recursive
6261

6362
# -----------------------------------------------------------------------------
6463
# Tests

0 commit comments

Comments
 (0)