canmove, Confirmed users
2,850
edits
ChrisCooper (talk | contribs) |
ChrisCooper (talk | contribs) |
||
| Line 91: | Line 91: | ||
To deploy to our pypi setup [[ReleaseEngineering:Buildduty:Other_Duties#Python_packages|follow these instructions]]. | To deploy to our pypi setup [[ReleaseEngineering:Buildduty:Other_Duties#Python_packages|follow these instructions]]. | ||
There is also a "fork" of the client code that lives in the tools repo: http://hg.mozilla.org/build/tools/lib/python/vendor/mozpoolclient-0.1.6 | |||
To update this version run the follwing commands: | |||
OLD=0.1.5 | |||
NEW=0.1.6 | |||
cd tools/lib/python/vendor | cd tools/lib/python/vendor | ||
hg move mozpoolclient- | hg move mozpoolclient-${OLD} mozpoolclient-${NEW} | ||
rsync --recursive --delete ../../../../mozpool/mozpoolclient/* mozpoolclient- | # Assuming mozpool is checked out at the same level as your tools repo. | ||
rsync --recursive --delete ../../../../mozpool/mozpoolclient/* mozpoolclient-${NEW} | |||
#Bump the version in here http://mxr.mozilla.org/build/source/tools/lib/python/vendorlibs.pth | #Bump the version in here http://mxr.mozilla.org/build/source/tools/lib/python/vendorlibs.pth | ||
vi ../vendorlibs.pth | |||
hg commit -m"Bumping mozpool client vendor version from ${OLD} to ${NEW}" | |||
hg push | |||
If you're the pypi package maintainer (armenzg or dustin), you can follow these [??? instructions]. | If you're the pypi package maintainer (armenzg or dustin), you can follow these [??? instructions]. | ||