Skip to content

Commit 8f5a3ab

Browse files
committed
python: require >=3.9 everywhere
1 parent 49c2f29 commit 8f5a3ab

File tree

12 files changed

+60
-734
lines changed

12 files changed

+60
-734
lines changed

contrib/cln-tracer/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
{name = "Christian Decker", email = "[email protected]"}
77
]
88
readme = "README.md"
9-
requires-python = ">=3.8,<4.0"
9+
requires-python = ">=3.9,<4.0"
1010
dependencies = [
1111
"bcc>=0.1.10",
1212
"opentelemetry-proto>=1.21.0"

contrib/msggen/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "A utility to transform wire messages and JSON-RPC messages to arbitrary target languages."
55
authors = [{ name = "Christian Decker", email = "[email protected]" }]
66
license = { text = "BSD-MIT" }
7-
requires-python = ">=3.6,<4.0"
7+
requires-python = ">=3.9,<4.0"
88
dependencies = []
99

1010
[dependency-groups]
@@ -18,7 +18,7 @@ include = ["msggen/schema.json"]
1818

1919

2020
[tool.poetry.dependencies]
21-
python = "^3.6"
21+
python = "^3.9"
2222

2323
[tool.poetry.group.dev.dependencies]
2424
pytest = "^6.2.5"

contrib/pyln-client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Client library and plugin library for Core Lightning"
55
authors = [{ name = "Christian Decker", email = "[email protected]" }]
66
license = { text = "BSD-MIT" }
77
readme = "README.md"
8-
requires-python = ">=3.8,<4.0"
8+
requires-python = ">=3.9,<4.0"
99
dependencies = ["pyln-proto>=23", "pyln-bolt7>=1.0"]
1010

1111
[dependency-groups]

contrib/pyln-grpc-proto/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "The compiled GRPC proto for CLN"
55
authors = [{ name = "Christian Decker", email = "[email protected]" }]
66
license = { text = "MIT" }
77
readme = "README.md"
8-
requires-python = ">=3.8,<4.0"
8+
requires-python = ">=3.9,<4.0"
99
dependencies = ["grpcio==1.69.0", "protobuf==5.29.4"]
1010

1111
[dependency-groups]

contrib/pyln-proto/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
]
88
license = {text = "BSD-MIT"}
99
readme = "README.md"
10-
requires-python = ">=3.8,<4.0"
10+
requires-python = ">=3.9,<4.0"
1111
dependencies = [
1212
"base58>=2.1.1",
1313
"bitstring>=4.1.0",

contrib/pyln-spec/bolt1/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
{name = "Rusty Russell", email = "[email protected]"}
77
]
88
license = {text = "MIT"}
9-
requires-python = ">=3.8,<4.0"
9+
requires-python = ">=3.9,<4.0"
1010
dependencies = []
1111

1212
[dependency-groups]

contrib/pyln-spec/bolt2/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
{name = "Rusty Russell", email = "[email protected]"}
77
]
88
license = {text = "MIT"}
9-
requires-python = ">=3.8,<4.0"
9+
requires-python = ">=3.9,<4.0"
1010
dependencies = []
1111

1212
[dependency-groups]

contrib/pyln-spec/bolt4/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
{name = "Rusty Russell", email = "[email protected]"}
77
]
88
license = {text = "MIT"}
9-
requires-python = ">=3.8,<4.0"
9+
requires-python = ">=3.9,<4.0"
1010
dependencies = []
1111

1212
[dependency-groups]

contrib/pyln-spec/bolt7/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "1.0.4.246"
44
description = "BOLT7"
55
authors = [{ name = "Rusty Russell" }]
66
license = { text = "BSD-MIT" }
7-
requires-python = ">=3.8,<4.0"
7+
requires-python = ">=3.9,<4.0"
88
dependencies = []
99

1010
[dependency-groups]

contrib/pyln-testing/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Test your Core Lightning integration, plugins or whatever you wan
55
authors = [{ name = "Christian Decker", email = "[email protected]" }]
66
license = { text = "BSD-MIT" }
77
readme = "README.md"
8-
requires-python = ">=3.8,<4.0"
8+
requires-python = ">=3.9,<4.0"
99
dependencies = [
1010
"pytest>=7.0.0",
1111
"ephemeral-port-reserve>=1.1.4",

0 commit comments

Comments
 (0)