Skip to content

Commit cbb4b4d

Browse files
authored
Merge pull request #41 from cloudify-incubator/0.9.5-build
add py311
2 parents ec38279 + 74faba5 commit cbb4b4d

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
version: 2.1
22

3+
job-post-steps: &job-post-steps
4+
post-steps:
5+
- slack/notify_failed
6+
7+
unittest-post-steps: &unittest-post-steps
8+
post-steps:
9+
- store_test_results:
10+
path: /home/circleci/project/nosetests.xml
11+
- store_artifacts:
12+
path: /home/circleci/project/coverage.xml
13+
prefix: tests
14+
- slack/notify_failed
15+
316
orbs:
417
node: cloudify/public-unittest-orb@volatile
518
wagonorb: cloudify/wagon-bulder-orb@volatile
619
releaseorb: cloudify/release-orb@volatile
720
managerorb: cloudify/manager-orb@volatile
21+
slack: cloudify/notify-slack@2
822

923
checkout:
1024
post:
@@ -52,6 +66,10 @@ workflows:
5266
filters:
5367
branches:
5468
only: /([0-9\.]*\-build|master|main)/
69+
- wagonorb/wagon_311:
70+
filters:
71+
branches:
72+
only: /([0-9\.]*\-build|master|main)/
5573
- wagonorb/arch64_wagon:
5674
filters:
5775
branches:
@@ -66,6 +84,7 @@ workflows:
6684
only: /master|main/
6785
requires:
6886
- wagonorb/wagon
87+
- wagonorb/wagon_311
6988
- wagonorb/arch64_wagon
7089
- wagonorb/rhel_wagon
7190
- node/validate_version_job

python311.patch

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
diff --git a/setup.py b/setup.py
2+
index 5778b32..6af4539 100644
3+
--- a/setup.py
4+
+++ b/setup.py
5+
@@ -45,10 +45,10 @@ setup(
6+
]
7+
},
8+
install_requires=[
9+
- 'cloudify-common>=4.5.0',
10+
+ 'cloudify-common>=7.0.0',
11+
# libvirt-6.0 requires python3
12+
'libvirt-python==8.5.0',
13+
# cdrom create code
14+
- "cloudify-utilities-plugins-sdk>=0.0.27",
15+
+ "cloudify-utilities-plugins-sdk>=0.0.127",
16+
],
17+
)

0 commit comments

Comments
 (0)