Skip to content

Commit 147155e

Browse files
committed
Administrivia:
automate merging
1 parent f1bf860 commit 147155e

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

admin-tools/merge-for-2.4.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#/bin/bash
2+
cd $(dirname ${BASH_SOURCE[0]})
3+
if . ./setup-python-2.4.sh; then
4+
git merge python-3.0-to-3.2
5+
fi

admin-tools/merge-for-3.0.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#/bin/bash
2+
cd $(dirname ${BASH_SOURCE[0]})
3+
if . ./setup-python-3.0.sh; then
4+
git merge python-3.3-to-3.5
5+
fi

admin-tools/merge-for-3.3.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#/bin/bash
2+
cd $(dirname ${BASH_SOURCE[0]})
3+
if . ./setup-python-3.3.sh; then
4+
git merge master
5+
fi

0 commit comments

Comments
 (0)