Skip to content

Commit 3061f5f

Browse files
authored
Merge branch 'main' into dependabot/pip/scaleway-core/pyrefly-0.26.1
2 parents b3d6093 + f9264e7 commit 3061f5f

File tree

15 files changed

+48
-38
lines changed

15 files changed

+48
-38
lines changed

scaleway-async/scaleway_async/inference/v1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
DeploymentStatus.CREATING,
1212
DeploymentStatus.DEPLOYING,
1313
DeploymentStatus.DELETING,
14+
DeploymentStatus.SCALING,
1415
]
1516
"""
1617
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.

scaleway-async/scaleway_async/inference/v1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta):
2323
ERROR = "error"
2424
DELETING = "deleting"
2525
LOCKED = "locked"
26+
SCALING = "scaling"
2627

2728
def __str__(self) -> str:
2829
return str(self.value)

scaleway-async/scaleway_async/inference/v1beta1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
DeploymentStatus.CREATING,
1111
DeploymentStatus.DEPLOYING,
1212
DeploymentStatus.DELETING,
13+
DeploymentStatus.SCALING,
1314
]
1415
"""
1516
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.

scaleway-async/scaleway_async/inference/v1beta1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class DeploymentStatus(str, Enum, metaclass=StrEnumMeta):
2323
ERROR = "error"
2424
DELETING = "deleting"
2525
LOCKED = "locked"
26+
SCALING = "scaling"
2627

2728
def __str__(self) -> str:
2829
return str(self.value)

scaleway-async/scaleway_async/product_catalog/v2alpha1/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ class PublicCatalogProductStatus(str, Enum, metaclass=StrEnumMeta):
4747
GENERAL_AVAILABILITY = "general_availability"
4848
END_OF_DEPLOYMENT = "end_of_deployment"
4949
END_OF_SUPPORT = "end_of_support"
50+
END_OF_SALE = "end_of_sale"
5051

5152
def __str__(self) -> str:
5253
return str(self.value)

scaleway-core/poetry.lock

Lines changed: 20 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scaleway-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ python-dateutil = "^2.8.2"
3030

3131
[tool.poetry.group.dev.dependencies]
3232
types-python-dateutil = "^2.8.19"
33-
ruff = ">=0.5.0,<0.12.5"
33+
ruff = ">=0.5.0,<0.12.8"
3434
mypy = "^1.5.1"
3535
ty = "^0.0.1a15"
3636
pyrefly = ">=0.24.2,<0.27.0"

scaleway/poetry.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scaleway/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ classifiers = [
2525
[tool.poetry.dependencies]
2626
python = ">=3.10"
2727
scaleway-core = "*"
28-
pyrefly = "^0.24.2"
28+
pyrefly = ">=0.24.2,<0.27.0"
2929

3030
[tool.poetry.group.dev.dependencies]
3131
scaleway-core = { path = "../scaleway-core", develop = true }
3232
ruff = ">=0.5.0,<0.12.9"
3333
mypy = "^1.5.1"
3434
ty = "^0.0.1a15"
35-
pyrefly = "^0.24.2"
35+
pyrefly = ">=0.24.2,<0.27.0"
3636

3737
[build-system]
3838
requires = ["poetry-core"]

scaleway/scaleway/inference/v1/content.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
DeploymentStatus.CREATING,
1212
DeploymentStatus.DEPLOYING,
1313
DeploymentStatus.DELETING,
14+
DeploymentStatus.SCALING,
1415
]
1516
"""
1617
Lists transient statutes of the enum :class:`DeploymentStatus <DeploymentStatus>`.

0 commit comments

Comments
 (0)