├── .gitignore └── README /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | .tox 3 | *.pyc 4 | *~ 5 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | ============================== 2 | Contributing to pylockfile 3 | ============================== 4 | 5 | The pylockfile library has been adopted by the OpenStack Oslo program, 6 | and development is now managed using our regular tool chain. 7 | 8 | If you would like to contribute to the development of OpenStack, 9 | you must follow the steps in the "If you're a developer, start here" 10 | section of this page: 11 | 12 | http://wiki.openstack.org/HowToContribute 13 | 14 | Once those steps have been completed, changes to OpenStack 15 | should be submitted for review via the Gerrit tool, following 16 | the workflow documented at: 17 | 18 | http://wiki.openstack.org/GerritWorkflow 19 | 20 | If you would like to fork or clone the repository from GitHub, please 21 | use https://github.com/openstack/pylockfile instead of this 22 | repository. However, pull requests submitted through GitHub will be 23 | ignored. 24 | 25 | Bugs should be filed on Launchpad, not GitHub: 26 | 27 | https://bugs.launchpad.net/pylockfile 28 | --------------------------------------------------------------------------------