0326f6781f
Use a custom tuple of separators for json.dumps that avoids having the comma+space, which looks bad if this is ever committed. Replace it by just having ": " and "," (no space after) instead. An example of this so that it can be more clear: http://paste.openstack.org/show/84238/ Note the above paste where the old version has spaces after commas where as the newer version does not have these spaces. Change-Id: Ifd04d5e1b26ebdf9db374761f31baaf1e33d87cd |
||
---|---|---|
tests | ||
.gitignore | ||
.gitreview | ||
.testr.conf | ||
detail.py | ||
dev-requirements.txt | ||
global-requirements.txt | ||
MANIFEST.in | ||
projects.txt | ||
README.rst | ||
setup.cfg | ||
setup.py | ||
test-requirements.txt | ||
tox.ini | ||
update.py |
Global dependencies for OpenStack Projects
All official OpenStack projects should be added to projects.txt. Once they are added here the gate/check jobs for the projects will use the OpenStack internal pypi mirror to ensure stability. The continuous integration infrastructure will also sync up the requirements across all the official projects and will create reviews in the participating projects for any mis-matches.
This process above will ensure that users of OpenStack will have one single set of python package requirements/ dependencies to install and run the individual OpenStack components.
To use this, run:
python update.py path/to/project
Entries in requirements.txt and test-requirements.txt will have their versions updated to match the entires listed here. Any entries in the target project which do not first exist here will be removed. No entries will be added.