Skip to content

Commit adc4f54

Browse files
committed
v0.18.0
Update to the latest specs: - v1.30: 0.0.0 -> 1.30.0-beta.0 - v1.29: 0.0.0 -> 1.29.2 - v1.28: 0.0.0 -> 1.28.7 - v1.27: 1.27.0-beta.0 -> 1.27.11 - v1.26: 1.26.3 -> 1.26.14 - pre: 1.27.0-beta.0 -> 1.30.0-beta.0 - latest: 1.26.3 -> 1.29.2
1 parent 4f8b847 commit adc4f54

File tree

336 files changed

+592507
-75141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

336 files changed

+592507
-75141
lines changed

.gitlab-ci.yml

Lines changed: 10 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,47 +2,28 @@ stages:
22
- check
33

44
black-lint:
5-
image: python:3.11
5+
image: python:3.12
66
stage: check
77
script:
88
- pip install black
99
- black --check .
1010

1111
flake8-lint:
12-
image: python:3.11
12+
image: python:3.12
1313
stage: check
1414
script:
1515
- pip install flake8 flake8-black
1616
- flake8 .
1717

1818
mypy-lint:
19-
image: python:3.11
19+
image: python:3.12
2020
stage: check
2121
script:
2222
- pip install mypy
2323
- mypy ./kuber --install-types --non-interactive --ignore-missing-imports
2424

25-
pytest-py38:
26-
image: python:3.8
27-
stage: check
28-
script:
29-
- pip install poetry
30-
- poetry install
31-
- >
32-
poetry run
33-
py.test
34-
--verbose
35-
--cov-report term-missing
36-
--cov=.
37-
.
38-
artifacts:
39-
paths:
40-
- .coverage
41-
- coverage.xml
42-
expire_in: 1 day
43-
44-
pytest-py39:
45-
image: python:3.9
25+
pytest-py310:
26+
image: python:3.10
4627
stage: check
4728
script:
4829
- pip install poetry
@@ -60,8 +41,8 @@ pytest-py39:
6041
- coverage.xml
6142
expire_in: 1 day
6243

63-
pytest-py310:
64-
image: python:3.10
44+
pytest-py311:
45+
image: python:3.11
6546
stage: check
6647
script:
6748
- pip install poetry
@@ -79,8 +60,8 @@ pytest-py310:
7960
- coverage.xml
8061
expire_in: 1 day
8162

82-
pytest-py311:
83-
image: python:3.11
63+
pytest-py312:
64+
image: python:3.12
8465
stage: check
8566
coverage: '/^TOTAL.*\s+\d+\s+\d+\s+(\d+)%/'
8667
script:
@@ -105,7 +86,7 @@ pytest-py311:
10586
expire_in: 1 day
10687

10788
sphinx-build:
108-
image: python:3.11
89+
image: python:3.12
10990
stage: check
11091
script:
11192
- pip install poetry

kuber/latest/__init__.py

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
import datetime as _datetime
2-
3-
from kuber import versioning as _versioning
4-
5-
# Information about the kubernetes API library version associated with this
6-
# package and kuber metadata around its creation and labeling within the
7-
# kuber library.
8-
KUBERNETES_VERSION = _versioning.KubernetesVersion(
9-
label="latest",
10-
version="v1.26.3",
11-
major="1",
12-
minor="26",
13-
patch="3",
14-
pre_release="",
15-
build="",
16-
created_at=_datetime.datetime(2023, 3, 20),
17-
commit_sha="9e644106593f3f4aa98f8a84b23db5fa378900bd",
18-
)
1+
import datetime as _datetime
2+
3+
from kuber import versioning as _versioning
4+
5+
# Information about the kubernetes API library version associated with this
6+
# package and kuber metadata around its creation and labeling within the
7+
# kuber library.
8+
KUBERNETES_VERSION = _versioning.KubernetesVersion(
9+
label="latest",
10+
version="v1.29.2",
11+
major="1",
12+
minor="29",
13+
patch="2",
14+
pre_release="",
15+
build="",
16+
created_at=_datetime.datetime(2024, 3, 13),
17+
commit_sha="4b8e819355d791d96b7e9d9efe4cbafae2311c88",
18+
)

0 commit comments

Comments
 (0)