Skip to content

Commit b4fbece

Browse files
authored
update requirements.txt (#436)
1 parent a674c98 commit b4fbece

18 files changed

+890
-26
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,7 @@ venv.bak/
107107

108108
.DS_Store
109109
*.wgn
110+
fusion-agent
111+
fusion-common
112+
fusion-manager
113+
cloudify-utilities-plugins-sdk

CHANGELOG.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
3.3.7: update requirements.txt.
12
3.3.6: Support Python 3.11 and discontinue 3.6.
23
3.3.5: add extra_specs and tenant access to flavor type.
34
3.3.4: support dsl 1_4 and redhat 8 wagons.

Makefile

+13
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

constraints.txt

-3
This file was deleted.

dev-requirements.txt

Whitespace-only changes.

openstack_plugin/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '3.3.6'
1+
version = '3.3.7'

openstack_plugin/resources/share/file_share.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def delete(openstack_resource):
8181
openstack_resource.resource_id))
8282
else:
8383
raise OperationRetry(
84-
'Shared resource {0} is still being deleted. Status: {0}'.format(
84+
'Shared resource {0} is still being deleted. Status: {1}'.format(
8585
openstack_resource.resource_id,
8686
openstack_resource.resource.status))
8787

plugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins:
33
openstack:
44
executor: central_deployment_agent
55
package_name: cloudify-openstack-plugin
6-
package_version: 3.3.6
6+
package_version: 3.3.7
77

88
dsl_definitions:
99

plugin_1_4.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins:
33
openstack:
44
executor: central_deployment_agent
55
package_name: cloudify-openstack-plugin
6-
package_version: 3.3.6
6+
package_version: 3.3.7
77

88
dsl_definitions:
99

plugin_1_5.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins:
33
openstack:
44
executor: central_deployment_agent
55
package_name: cloudify-openstack-plugin
6-
package_version: 3.3.6
6+
package_version: 3.3.7
77

88
dsl_definitions:
99

requirements-3.6.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dogpile.cache===0.9.2
2+
cryptography==40.0.2

0 commit comments

Comments
 (0)