diff --git a/ipmictl.py b/ipmictl.py index b5df209d..c98a7f09 100755 --- a/ipmictl.py +++ b/ipmictl.py @@ -1,21 +1,21 @@ #!/usr/bin/env python +# Copyright 2013 IBM Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. """ @author: Jarrod Johnson - -Copyright 2013 IBM Corporation - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. """ + """This is an example of using the library in a synchronous fashion. For now, it isn't conceived as a general utility to actually use, just help developers understand how the ipmi_command class workes. diff --git a/requirements.txt b/requirements.txt index 397ea524..ae8cd06a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1 @@ -d2to1>=0.2.10,<0.3 -pbr>=0.5.16,<0.6 - -pycrypto>=2 +pycrypto>=2.6 diff --git a/setup.py b/setup.py index 74e2f576..70c2b3f3 100755 --- a/setup.py +++ b/setup.py @@ -14,8 +14,9 @@ # See the License for the specific language governing permissions and # limitations under the License. +# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT import setuptools setuptools.setup( - setup_requires=['d2to1>=0.2.10,<0.3', 'pbr>=0.5.16,<0.6'], - d2to1=True) + setup_requires=['pbr'], + pbr=True) diff --git a/solconnect.py b/solconnect.py index 3b74d620..6c1dc3a6 100644 --- a/solconnect.py +++ b/solconnect.py @@ -1,21 +1,22 @@ #!/usr/bin/env python +# Copyright 2013 IBM Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + """ @author: Jarrod Johnson - -Copyright 2013 IBM Corporation - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. """ + """A simple little script to exemplify/test ipmi.console module """ import os diff --git a/test-requirements.txt b/test-requirements.txt index 6450a623..94adbad0 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,14 +1,10 @@ -# Install bounded pep8/pyflakes first, then let flake8 install -pep8==1.4.5 -pyflakes==0.7.2 -flake8==2.0 -hacking>=0.5.3,<0.6 +hacking>=0.5.6,<0.8 coverage>=3.6 discover -fixtures>=0.3.12 +fixtures>=0.3.14 python-subunit sphinx>=1.1.2 -testrepository>=0.0.13 -testscenarios -testtools>=0.9.27 +testrepository>=0.0.17 +testscenarios>=0.4 +testtools>=0.9.32