Skip to content

Commit 66c5b42

Browse files
committed
Bump the repo-config dependency to 0.11.0
In preparation for the 0.11.0 release. Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 93e7a96 commit 66c5b42

File tree

11 files changed

+29
-29
lines changed

11 files changed

+29
-29
lines changed

cookiecutter/{{cookiecutter.github_repo_name}}/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
requires = [
66
"setuptools == 75.5.0",
77
"setuptools_scm[toml] == 8.1.0",
8-
"frequenz-repo-config[{{cookiecutter.type}}] == 0.10.0",
8+
"frequenz-repo-config[{{cookiecutter.type}}] == 0.11.0",
99
{%- if cookiecutter.type == "api" %}
1010
# We need to pin the protobuf, grpcio and grpcio-tools dependencies to make
1111
# sure the code is generated using the minimum supported versions, as older
@@ -101,7 +101,7 @@ dev-mkdocs = [
101101
"mkdocs-material == 9.5.45",
102102
"mkdocstrings[python] == 0.27.0",
103103
"mkdocstrings-python == 1.12.2",
104-
"frequenz-repo-config[{{cookiecutter.type}}] == 0.10.0",
104+
"frequenz-repo-config[{{cookiecutter.type}}] == 0.11.0",
105105
]
106106
dev-mypy = [
107107
"mypy == 1.9.0",
@@ -114,7 +114,7 @@ dev-mypy = [
114114
]
115115
dev-noxfile = [
116116
"nox == 2024.10.9",
117-
"frequenz-repo-config[{{cookiecutter.type}}] == 0.10.0",
117+
"frequenz-repo-config[{{cookiecutter.type}}] == 0.11.0",
118118
]
119119
dev-pylint = [
120120
# dev-pytest already defines a dependency to pylint because of the examples
@@ -124,7 +124,7 @@ dev-pylint = [
124124
dev-pytest = [
125125
"pytest == 8.3.3",
126126
"pylint == 3.3.1", # We need this to check for the examples
127-
"frequenz-repo-config[extra-lint-examples] == 0.10.0",
127+
"frequenz-repo-config[extra-lint-examples] == 0.11.0",
128128
{%- if cookiecutter.type != "api" %}
129129
"pytest-mock == 3.14.0",
130130
"pytest-asyncio == 0.24.0",

tests_golden/integration/test_cookiecutter_generation/actor/frequenz-actor-test/.github/containers/test-installation/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This Dockerfile is used to test the installation of the python package in
44
# multiple platforms in the CI. It is not used to build the package itself.
55

6-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+
FROM python:3.11-slim
77

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

tests_golden/integration/test_cookiecutter_generation/actor/frequenz-actor-test/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
requires = [
66
"setuptools == 75.5.0",
77
"setuptools_scm[toml] == 8.1.0",
8-
"frequenz-repo-config[actor] == 0.10.0",
8+
"frequenz-repo-config[actor] == 0.11.0",
99
]
1010
build-backend = "setuptools.build_meta"
1111

@@ -60,7 +60,7 @@ dev-mkdocs = [
6060
"mkdocs-material == 9.5.45",
6161
"mkdocstrings[python] == 0.27.0",
6262
"mkdocstrings-python == 1.12.2",
63-
"frequenz-repo-config[actor] == 0.10.0",
63+
"frequenz-repo-config[actor] == 0.11.0",
6464
]
6565
dev-mypy = [
6666
"mypy == 1.9.0",
@@ -70,7 +70,7 @@ dev-mypy = [
7070
]
7171
dev-noxfile = [
7272
"nox == 2024.10.9",
73-
"frequenz-repo-config[actor] == 0.10.0",
73+
"frequenz-repo-config[actor] == 0.11.0",
7474
]
7575
dev-pylint = [
7676
# dev-pytest already defines a dependency to pylint because of the examples
@@ -80,7 +80,7 @@ dev-pylint = [
8080
dev-pytest = [
8181
"pytest == 8.3.3",
8282
"pylint == 3.3.1", # We need this to check for the examples
83-
"frequenz-repo-config[extra-lint-examples] == 0.10.0",
83+
"frequenz-repo-config[extra-lint-examples] == 0.11.0",
8484
"pytest-mock == 3.14.0",
8585
"pytest-asyncio == 0.24.0",
8686
"async-solipsism == 0.6",

tests_golden/integration/test_cookiecutter_generation/api/frequenz-api-test/.github/containers/test-installation/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This Dockerfile is used to test the installation of the python package in
44
# multiple platforms in the CI. It is not used to build the package itself.
55

6-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+
FROM python:3.11-slim
77

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

tests_golden/integration/test_cookiecutter_generation/api/frequenz-api-test/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
requires = [
66
"setuptools == 75.5.0",
77
"setuptools_scm[toml] == 8.1.0",
8-
"frequenz-repo-config[api] == 0.10.0",
8+
"frequenz-repo-config[api] == 0.11.0",
99
# We need to pin the protobuf, grpcio and grpcio-tools dependencies to make
1010
# sure the code is generated using the minimum supported versions, as older
1111
# versions can't work with code that was generated with newer versions.
@@ -71,7 +71,7 @@ dev-mkdocs = [
7171
"mkdocs-material == 9.5.45",
7272
"mkdocstrings[python] == 0.27.0",
7373
"mkdocstrings-python == 1.12.2",
74-
"frequenz-repo-config[api] == 0.10.0",
74+
"frequenz-repo-config[api] == 0.11.0",
7575
]
7676
dev-mypy = [
7777
"mypy == 1.9.0",
@@ -82,7 +82,7 @@ dev-mypy = [
8282
]
8383
dev-noxfile = [
8484
"nox == 2024.10.9",
85-
"frequenz-repo-config[api] == 0.10.0",
85+
"frequenz-repo-config[api] == 0.11.0",
8686
]
8787
dev-pylint = [
8888
# dev-pytest already defines a dependency to pylint because of the examples
@@ -92,7 +92,7 @@ dev-pylint = [
9292
dev-pytest = [
9393
"pytest == 8.3.3",
9494
"pylint == 3.3.1", # We need this to check for the examples
95-
"frequenz-repo-config[extra-lint-examples] == 0.10.0",
95+
"frequenz-repo-config[extra-lint-examples] == 0.11.0",
9696
]
9797
dev = [
9898
"frequenz-api-test[dev-mkdocs,dev-flake8,dev-formatting,dev-mkdocs,dev-mypy,dev-noxfile,dev-pylint,dev-pytest]",

tests_golden/integration/test_cookiecutter_generation/app/frequenz-app-test/.github/containers/test-installation/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This Dockerfile is used to test the installation of the python package in
44
# multiple platforms in the CI. It is not used to build the package itself.
55

6-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+
FROM python:3.11-slim
77

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

tests_golden/integration/test_cookiecutter_generation/app/frequenz-app-test/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
requires = [
66
"setuptools == 75.5.0",
77
"setuptools_scm[toml] == 8.1.0",
8-
"frequenz-repo-config[app] == 0.10.0",
8+
"frequenz-repo-config[app] == 0.11.0",
99
]
1010
build-backend = "setuptools.build_meta"
1111

@@ -59,7 +59,7 @@ dev-mkdocs = [
5959
"mkdocs-material == 9.5.45",
6060
"mkdocstrings[python] == 0.27.0",
6161
"mkdocstrings-python == 1.12.2",
62-
"frequenz-repo-config[app] == 0.10.0",
62+
"frequenz-repo-config[app] == 0.11.0",
6363
]
6464
dev-mypy = [
6565
"mypy == 1.9.0",
@@ -69,7 +69,7 @@ dev-mypy = [
6969
]
7070
dev-noxfile = [
7171
"nox == 2024.10.9",
72-
"frequenz-repo-config[app] == 0.10.0",
72+
"frequenz-repo-config[app] == 0.11.0",
7373
]
7474
dev-pylint = [
7575
# dev-pytest already defines a dependency to pylint because of the examples
@@ -79,7 +79,7 @@ dev-pylint = [
7979
dev-pytest = [
8080
"pytest == 8.3.3",
8181
"pylint == 3.3.1", # We need this to check for the examples
82-
"frequenz-repo-config[extra-lint-examples] == 0.10.0",
82+
"frequenz-repo-config[extra-lint-examples] == 0.11.0",
8383
"pytest-mock == 3.14.0",
8484
"pytest-asyncio == 0.24.0",
8585
"async-solipsism == 0.6",

tests_golden/integration/test_cookiecutter_generation/lib/frequenz-test-python/.github/containers/test-installation/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This Dockerfile is used to test the installation of the python package in
44
# multiple platforms in the CI. It is not used to build the package itself.
55

6-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+
FROM python:3.11-slim
77

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

tests_golden/integration/test_cookiecutter_generation/lib/frequenz-test-python/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
requires = [
66
"setuptools == 75.5.0",
77
"setuptools_scm[toml] == 8.1.0",
8-
"frequenz-repo-config[lib] == 0.10.0",
8+
"frequenz-repo-config[lib] == 0.11.0",
99
]
1010
build-backend = "setuptools.build_meta"
1111

@@ -56,7 +56,7 @@ dev-mkdocs = [
5656
"mkdocs-material == 9.5.45",
5757
"mkdocstrings[python] == 0.27.0",
5858
"mkdocstrings-python == 1.12.2",
59-
"frequenz-repo-config[lib] == 0.10.0",
59+
"frequenz-repo-config[lib] == 0.11.0",
6060
]
6161
dev-mypy = [
6262
"mypy == 1.9.0",
@@ -66,7 +66,7 @@ dev-mypy = [
6666
]
6767
dev-noxfile = [
6868
"nox == 2024.10.9",
69-
"frequenz-repo-config[lib] == 0.10.0",
69+
"frequenz-repo-config[lib] == 0.11.0",
7070
]
7171
dev-pylint = [
7272
# dev-pytest already defines a dependency to pylint because of the examples
@@ -76,7 +76,7 @@ dev-pylint = [
7676
dev-pytest = [
7777
"pytest == 8.3.3",
7878
"pylint == 3.3.1", # We need this to check for the examples
79-
"frequenz-repo-config[extra-lint-examples] == 0.10.0",
79+
"frequenz-repo-config[extra-lint-examples] == 0.11.0",
8080
"pytest-mock == 3.14.0",
8181
"pytest-asyncio == 0.24.0",
8282
"async-solipsism == 0.6",

tests_golden/integration/test_cookiecutter_generation/model/frequenz-model-test/.github/containers/test-installation/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This Dockerfile is used to test the installation of the python package in
44
# multiple platforms in the CI. It is not used to build the package itself.
55

6-
FROM --platform=${TARGETPLATFORM} python:3.11-slim
6+
FROM python:3.11-slim
77

88
RUN apt-get update -y && \
99
apt-get install --no-install-recommends -y \

0 commit comments

Comments
 (0)