Skip to content

Commit aa83d72

Browse files
author
Idan Moyal
committed
remove develop branch
1 parent 4ed2138 commit aa83d72

File tree

4 files changed

+4
-20
lines changed

4 files changed

+4
-20
lines changed

dev-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
-e git+https://github.com/cloudify-cosmo/cloudify-rest-client@develop#egg=cloudify-rest-client==3.1
2-
-e git+https://github.com/cloudify-cosmo/cloudify-plugins-common@develop#egg=cloudify-plugins-common==3.1
1+
-e git+https://github.com/cloudify-cosmo/cloudify-rest-client@master#egg=cloudify-rest-client==3.1
2+
-e git+https://github.com/cloudify-cosmo/cloudify-plugins-common@master#egg=cloudify-plugins-common==3.1

puppet_plugin/VERSION

Lines changed: 0 additions & 6 deletions
This file was deleted.

puppet_plugin/__init__.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,3 @@
1313
# * See the License for the specific language governing permissions and
1414
# * limitations under the License.
1515

16-
import json
17-
import pkgutil
18-
19-
20-
def get_version():
21-
data = pkgutil.get_data('puppet_plugin', 'VERSION')
22-
return json.loads(data)['version']

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,11 @@
1717

1818
import setuptools
1919

20-
from puppet_plugin import get_version
21-
2220

2321
setuptools.setup(
2422
zip_safe=False,
2523
name='cloudify-puppet-plugin',
26-
version=get_version(),
24+
version='1.1',
2725
author='ilya',
2826
author_email='ilya.sher@coding-knight.com',
2927
packages=['puppet_plugin'],
@@ -34,8 +32,7 @@
3432
],
3533
package_data={
3634
'puppet_plugin': [
37-
'puppet/facts/cloudify_facts.rb',
38-
'VERSION'
35+
'puppet/facts/cloudify_facts.rb'
3936
]
4037
},
4138
)

0 commit comments

Comments
 (0)