Compare commits
No commits in common. "ed355c15ab94090032d07e8d6a8b0aa58b8e4255" and "95a667c57b8c828a139e6dc68173e91238f79dbb" have entirely different histories.
ed355c15ab
...
95a667c57b
@ -1,5 +1,5 @@
|
|||||||
ARG RUNTIME_VERSION="3.11"
|
ARG RUNTIME_VERSION="3.11"
|
||||||
ARG DISTRO_VERSION="3.19"
|
ARG DISTRO_VERSION="3.18"
|
||||||
|
|
||||||
FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS builder
|
FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS builder
|
||||||
ARG RUNTIME_VERSION="3.11"
|
ARG RUNTIME_VERSION="3.11"
|
||||||
|
@ -444,13 +444,7 @@ def _provision(cb, stacks):
|
|||||||
"""Utility function to reuse code between tasks"""
|
"""Utility function to reuse code between tasks"""
|
||||||
for step in sort_stacks(cb, stacks):
|
for step in sort_stacks(cb, stacks):
|
||||||
if step:
|
if step:
|
||||||
# Pulumi is still not thread safe
|
with ThreadPoolExecutor(max_workers=len(step)) as group:
|
||||||
if _anyPulumi(step):
|
|
||||||
_threads = 1
|
|
||||||
else
|
|
||||||
_threads = len(step)
|
|
||||||
|
|
||||||
with ThreadPoolExecutor(max_workers=_threads)) as group:
|
|
||||||
futures = []
|
futures = []
|
||||||
for stack in step:
|
for stack in step:
|
||||||
if stack.mode != "pulumi":
|
if stack.mode != "pulumi":
|
||||||
|
@ -146,7 +146,7 @@ def pulumi_ws(func):
|
|||||||
try:
|
try:
|
||||||
_min_version = self._pulumi_code.MIN_CLOUDBENDER_VERSION
|
_min_version = self._pulumi_code.MIN_CLOUDBENDER_VERSION
|
||||||
if semver.compare(
|
if semver.compare(
|
||||||
semver.Version.parse(__version__.strip("v")).finalize_version(),
|
__version__.strip("v"),
|
||||||
_min_version.strip("v")) < 0:
|
_min_version.strip("v")) < 0:
|
||||||
raise ValueError(
|
raise ValueError(
|
||||||
f"Minimal required CloudBender version is {_min_version}, but we are {__version__}!"
|
f"Minimal required CloudBender version is {_min_version}, but we are {__version__}!"
|
||||||
|
@ -13,19 +13,19 @@ readme = "README.md"
|
|||||||
license = "AGPL-3.0-or-later"
|
license = "AGPL-3.0-or-later"
|
||||||
requires-python = ">=3.9"
|
requires-python = ">=3.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"boto3==1.34.89",
|
"boto3==1.28.70",
|
||||||
"mock==5.1.0",
|
"mock==5.1.0",
|
||||||
"Jinja2==3.1.3",
|
"Jinja2==3.1.2",
|
||||||
"click==8.1.7",
|
"click==8.1.7",
|
||||||
"pexpect==4.9.0",
|
"pexpect==4.8.0",
|
||||||
"python-minifier==2.9.0",
|
"python-minifier==2.9.0",
|
||||||
"cfn-lint==0.86.4",
|
"cfn-lint==0.83.0",
|
||||||
"ruamel.yaml==0.18.6",
|
"ruamel.yaml==0.18.2",
|
||||||
"pulumi==3.113.3",
|
"pulumi==3.89.0",
|
||||||
"pulumi-aws==6.32.0",
|
"pulumi-aws==6.6.1",
|
||||||
"pulumi-aws-native==0.103.0",
|
"pulumi-aws-native==0.82.0",
|
||||||
"pulumi-policy==1.11.0",
|
"pulumi-policy==1.7.0",
|
||||||
"pulumi-command==0.10.0",
|
"pulumi-command==0.9.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
classifiers = [
|
classifiers = [
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
"extends": [
|
"extends": [
|
||||||
"config:recommended",
|
"config:recommended",
|
||||||
":label(renovate)",
|
":label(renovate)",
|
||||||
":semanticCommits",
|
":semanticCommits"
|
||||||
"group:allNonMajor"
|
|
||||||
],
|
],
|
||||||
"prHourlyLimit": 0
|
"prHourlyLimit": 0
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user