Skip to content

Commit 19a711c

Browse files
authored
Merge pull request #277 from cloudify-cosmo/3.8.7-build
update requirements
2 parents 22b6aab + 3915bb7 commit 19a711c

19 files changed

+659
-54
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,7 @@ azurecloudify/tests/test_conf.py
6767

6868
cover
6969
azure/*
70+
fusion-agent
71+
fusion-common
72+
fusion-manager
73+
cloudify-utilities-plugins-sdk

CHANGELOG.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
3.8.7: Update requirements.txt.
12
3.8.6: wagon_311 & new circleci context.
23
3.8.5: Add DSL 1.5 YAML.
34
3.8.4: Setup Plugin YAMLs.

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
download:
2+
ifeq (,$(wildcard ./fusion-agent))
3+
git clone https://${GH_USER}:${GITHUB_PASSWORD}@eos2git.cec.lab.emc.com/ISG-Edge/fusion-agent.git && cd './fusion-agent' && git checkout rel/magicp1-2.0.0 && cd ..
4+
endif
5+
ifeq (,$(wildcard ./fusion-common))
6+
git clone https://${GH_USER}:${GITHUB_PASSWORD}@eos2git.cec.lab.emc.com/ISG-Edge/fusion-common.git && cd './fusion-common' && git checkout rel/magicp1-2.0.0 && cd ..
7+
endif
8+
ifeq (,$(wildcard ./fusion-manager))
9+
git clone https://${GH_USER}:${GITHUB_PASSWORD}@eos2git.cec.lab.emc.com/ISG-Edge/fusion-manager.git && cd './fusion-manager' && git checkout rel/magicp1-2.0.0 && cd ..
10+
endif
11+
ifeq (,$(wildcard ./cloudify-utilities-plugins-sdk))
12+
git clone https://github.com/cloudify-incubator/cloudify-utilities-plugins-sdk.git && cd './cloudify-utilities-plugins-sdk' && git checkout fusion && cd ..
13+
endif

cloudify_azure/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '3.8.6'
1+
version = '3.8.7'

cloudify_azure/utils.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
Microsoft Azure plugin for Cloudify helper utilities
1919
"""
2020
import re
21-
22-
from collections import Mapping
21+
import sys
2322

2423
from cloudify import ctx
2524
from cloudify import exceptions as cfy_exc
@@ -28,6 +27,11 @@
2827
from msrestazure.azure_exceptions import CloudError
2928
from azure.core.exceptions import ResourceNotFoundError
3029

30+
if sys.version_info.major == 3 and sys.version_info.minor > 7:
31+
from collections.abc import Mapping
32+
else:
33+
from collections import Mapping
34+
3135

3236
def dict_update(orig, updates):
3337
"""Recursively merges two objects"""

constraints.txt

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

dev-requirements.txt

Whitespace-only changes.

extra-packaging-instructions.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@ EOF
1111
cat <<EOF > ./webbrowser/__init__.py
1212
pass
1313
EOF
14-
git apply python311.patch
1514
fi

plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins:
22
azure:
33
executor: central_deployment_agent
44
package_name: cloudify-azure-plugin
5-
package_version: 3.8.6
5+
package_version: 3.8.7
66
data_types:
77
cloudify.datatypes.azure.Config:
88
properties:

plugin_1_4.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins:
22
azure:
33
executor: central_deployment_agent
44
package_name: cloudify-azure-plugin
5-
package_version: 3.8.6
5+
package_version: 3.8.7
66

77
data_types:
88
cloudify.datatypes.azure.Config:

0 commit comments

Comments
 (0)