Skip to content

Commit

Permalink
update requirements.txt (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
EarthmanT authored Nov 30, 2023
1 parent a674c98 commit b4fbece
Show file tree
Hide file tree
Showing 18 changed files with 890 additions and 26 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,7 @@ venv.bak/

.DS_Store
*.wgn
fusion-agent
fusion-common
fusion-manager
cloudify-utilities-plugins-sdk
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
3.3.7: update requirements.txt.
3.3.6: Support Python 3.11 and discontinue 3.6.
3.3.5: add extra_specs and tenant access to flavor type.
3.3.4: support dsl 1_4 and redhat 8 wagons.
Expand Down
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
download:
ifeq (,$(wildcard ./fusion-agent))
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 ..
endif
ifeq (,$(wildcard ./fusion-common))
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 ..
endif
ifeq (,$(wildcard ./fusion-manager))
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 ..
endif
ifeq (,$(wildcard ./cloudify-utilities-plugins-sdk))
git clone https://github.com/cloudify-incubator/cloudify-utilities-plugins-sdk.git && cd './cloudify-utilities-plugins-sdk' && git checkout fusion && cd ..
endif
3 changes: 0 additions & 3 deletions constraints.txt

This file was deleted.

Empty file removed dev-requirements.txt
Empty file.
2 changes: 1 addition & 1 deletion openstack_plugin/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '3.3.6'
version = '3.3.7'
2 changes: 1 addition & 1 deletion openstack_plugin/resources/share/file_share.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def delete(openstack_resource):
openstack_resource.resource_id))
else:
raise OperationRetry(
'Shared resource {0} is still being deleted. Status: {0}'.format(
'Shared resource {0} is still being deleted. Status: {1}'.format(
openstack_resource.resource_id,
openstack_resource.resource.status))

Expand Down
2 changes: 1 addition & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins:
openstack:
executor: central_deployment_agent
package_name: cloudify-openstack-plugin
package_version: 3.3.6
package_version: 3.3.7

dsl_definitions:

Expand Down
2 changes: 1 addition & 1 deletion plugin_1_4.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins:
openstack:
executor: central_deployment_agent
package_name: cloudify-openstack-plugin
package_version: 3.3.6
package_version: 3.3.7

dsl_definitions:

Expand Down
2 changes: 1 addition & 1 deletion plugin_1_5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins:
openstack:
executor: central_deployment_agent
package_name: cloudify-openstack-plugin
package_version: 3.3.6
package_version: 3.3.7

dsl_definitions:

Expand Down
2 changes: 2 additions & 0 deletions requirements-3.6.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dogpile.cache===0.9.2
cryptography==40.0.2
Loading

0 comments on commit b4fbece

Please sign in to comment.