Skip to content

Commit 791af78

Browse files
committed
DSL 1.5 and manylinux
1 parent a649267 commit 791af78

7 files changed

Lines changed: 476 additions & 5 deletions

File tree

CHANGELOG.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,5 @@
3333
0.9.1.1: Testing webhook for Marketplace scraping
3434
0.9.2: Rerelease for build system.
3535
0.9.3: Rerelease with rhel8.
36-
0.9.4: Add Passthrough Devices support.
36+
0.9.4: Add Passthrough Devices support.
37+
0.9.5: manylinux and dsl 1.5

cloudify_libvirt/__version__.py

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

extra-packaging-instructions.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
if [[ $PY311 == 1 ]]
2+
then
3+
mkdir -p ./pydoc
4+
touch ./pydoc/__init__.py
5+
cat <<EOF > ./pydoc/__init__.py
6+
def get_doc(*args):
7+
return ''
8+
EOF
9+
mkdir -p ./webbrowser
10+
touch ./webbrowser/__init__.py
11+
cat <<EOF > ./webbrowser/__init__.py
12+
EOF
13+
git apply python311.patch
14+
echo patch applied
15+
fi

plugin.yaml

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

77
data_types:
88

plugin_1_4.yaml

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

77
blueprint_labels:
88
obj-type:

0 commit comments

Comments
 (0)