On Tue, Feb 11, 2020 at 3:49 PM Ethan Furman <[email protected]> wrote:
> > I'm trying to get the 3.3 and 3.4 branches so I can check my libraries > compatibility with older versions, but I do not see those branches as being > available: > > How can I get those? > > > 3.3 and 3.4 existed before the migration from GitHub, so we don't have the branches. They are in the repo as git tags. Try: # list all git tags matching v.3.3 git tag -l 'v3.3*' # checkout the v.3.3.0 tag to a local branch git checkout tags/v.3.3.0 -b my-own-3.3.0-branch
_______________________________________________ python-committers mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-committers.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/6TF7LBUDYGDCSU3QA5PLGARATIYQYUY3/ Code of Conduct: https://www.python.org/psf/codeofconduct/
