[python-committers] Re: GitHub: remove the "needs backport to 3.5" label?

2019-08-19 Thread Abhilash Raj
On Mon, Aug 19, 2019, at 1:19 PM, Brett Cannon wrote: > Abhilash Raj (maxking) wrote: > > Hi, > > On August 19, 2019 9:35:02 AM UTC, Victor Stinner [email protected] wrote: > > > Hi, > > > To create a 3.5 backport, I use the following commands (something like > > > this, adapt names ;-): > > > c

[python-committers] Re: GitHub: remove the "needs backport to 3.5" label?

2019-08-19 Thread Brett Cannon
Abhilash Raj (maxking) wrote: > Hi, > On August 19, 2019 9:35:02 AM UTC, Victor Stinner [email protected] wrote: > > Hi, > > To create a 3.5 backport, I use the following commands (something like > > this, adapt names ;-): > > cd ~/python/3.5 > > git checkout -b fix_something35 > > git cherr

[python-committers] Re: GitHub: remove the "needs backport to 3.5" label?

2019-08-19 Thread Abhilash Raj (maxking)
Hi, On August 19, 2019 9:35:02 AM UTC, Victor Stinner wrote: >Hi, > >To create a 3.5 backport, I use the following commands (something like >this, adapt names ;-): > > cd ~/python/3.5 > git checkout -b fix_something35 > git cherry-pick -x commit_sha1 > # maybe fix conflicts or make furth

[python-committers] Re: GitHub: remove the "needs backport to 3.5" label?

2019-08-19 Thread Victor Stinner
Hi, To create a 3.5 backport, I use the following commands (something like this, adapt names ;-): cd ~/python/3.5 git checkout -b fix_something35 git cherry-pick -x commit_sha1 # maybe fix conflicts or make further changes make ./python -m test -v test_modified_test # or better: