Skip to content

Commit 17a463b

Browse files
committed
Make new projects depend on a newer setuptools
We will use new options supported by setuptools 77 or older, so we should make sure new projects use a more recent version. Signed-off-by: Leandro Lucarella <luca-frequenz@llucax.com>
1 parent 28daa85 commit 17a463b

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[build-system]
55
requires = [
6-
"setuptools == 75.8.0",
6+
"setuptools == 80.9.0",
77
"setuptools_scm[toml] == 8.1.0",
88
"frequenz-repo-config[{{cookiecutter.type}}] == 0.14.0",
99
{%- if cookiecutter.type == "api" %}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[build-system]
55
requires = [
6-
"setuptools == 75.8.0",
6+
"setuptools == 80.9.0",
77
"setuptools_scm[toml] == 8.1.0",
88
"frequenz-repo-config[actor] == 0.14.0",
99
]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[build-system]
55
requires = [
6-
"setuptools == 75.8.0",
6+
"setuptools == 80.9.0",
77
"setuptools_scm[toml] == 8.1.0",
88
"frequenz-repo-config[api] == 0.14.0",
99
# We need to pin the protobuf, grpcio and grpcio-tools dependencies to make

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[build-system]
55
requires = [
6-
"setuptools == 75.8.0",
6+
"setuptools == 80.9.0",
77
"setuptools_scm[toml] == 8.1.0",
88
"frequenz-repo-config[app] == 0.14.0",
99
]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[build-system]
55
requires = [
6-
"setuptools == 75.8.0",
6+
"setuptools == 80.9.0",
77
"setuptools_scm[toml] == 8.1.0",
88
"frequenz-repo-config[lib] == 0.14.0",
99
]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[build-system]
55
requires = [
6-
"setuptools == 75.8.0",
6+
"setuptools == 80.9.0",
77
"setuptools_scm[toml] == 8.1.0",
88
"frequenz-repo-config[model] == 0.14.0",
99
]

0 commit comments

Comments
 (0)