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

Commit 3c9e317

Browse files
committed
Remove submodules
1 parent a4015d3 commit 3c9e317

9 files changed

+37
-21
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pandas-*

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
*-venv/
22
pandas-docs/
3+
pandas-website
4+
pandas-wheels
5+
pandas-feedstock
6+
pandas
7+
dist

.gitmodules

-12
Original file line numberDiff line numberDiff line change
@@ -1,12 +0,0 @@
1-
[submodule "pandas-website"]
2-
path = pandas-website
3-
url = https://github.com/pandas-dev/pandas-website
4-
[submodule "pandas-feedstock"]
5-
path = pandas-feedstock
6-
url = https://github.com/conda-forge/pandas-feedstock
7-
[submodule "pandas-wheels"]
8-
path = pandas-wheels
9-
url = https://github.com/MacPython/pandas-wheels
10-
[submodule "pandas"]
11-
path = pandas
12-
url = https://github.com/pandas-dev/pandas

Makefile

+8-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@ PANDAS_VERSION=$(TAG:v%=%)
33
GH_USERNAME ?= TomAugspurger
44

55

6-
update-repos:
7-
pushd pandas && git remote set-url origin https://github.com/$(GH_USERNAME)/pandas && git remote update && git checkout master && git reset --hard upstream/master && popd && \
8-
pushd pandas-website && git remote set-url origin https://github.com/$(GH_USERNAME)/pandas-website && git remote update && git checkout master && git reset --hard upstream/master && popd && \
9-
pushd pandas-wheels && git remote set-url origin https://github.com/$(GH_USERNAME)/pandas-wheels && git remote update && git checkout master && git reset --hard upstream/master && popd && \
10-
pushd pandas-feedstock && git remote set-url origin https://github.com/$(GH_USERNAME)/pandas-feedstock && git remote update && git checkout master && git reset --hard upstream/master && popd
6+
init-repos:
7+
git clone https://github.com/pandas-dev/pandas && git -C pandas remote rename origin upstream && git -C remote add origin https://github.com/$(GH_USERNAME)/pandas
8+
git clone https://github.com/pandas-dev/pandas-website && git -C pandas remote rename origin upstream && git -C remote add origin https://github.com/$(GH_USERNAME)/pandas-website
9+
git clone https://github.com/MacPython/pandas-wheels && git -C pandas remote rename origin upstream && git -C remote add origin https://github.com/$(GH_USERNAME)/pandas-wheels
10+
git clone https://github.com/conda-forge/pandas-feedstock && git -C pandas remote rename origin upstream && git -C remote add origin https://github.com/$(GH_USERNAME)/pandas-feedstock
11+
1112

13+
update-repos:
14+
git -C pandas checkout master && git -C pandas pull
1215

1316
tag:
1417
pushd pandas && ../scripts/tag.py $(TAG) && popd

notes.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# First time
2+
3+
- git clone --recurse-submodules https://github.com/pandas-dev/pandas-release
4+
- update GH\_USERNAME
5+
6+
7+
# Release
8+
9+
1. Update tag in Makefile
10+
2. tag
11+
3. conda-test
12+
4. pandas-website & finish up manually
13+
5. test
14+
6. push-tag
15+
7. make pandas/dist/%.tar.gz
16+
8. Manual GH Release
17+
18+
19+
Bugs
20+
21+
- doc is messed up. Should create / activate the travis doc env first.
22+
- update conda-smithy for conda-forge
23+
- Checkout master again after merging? Submodule stuff in general.

pandas

-1
This file was deleted.

pandas-feedstock

-1
This file was deleted.

pandas-website

-1
This file was deleted.

pandas-wheels

-1
This file was deleted.

0 commit comments

Comments
 (0)