Skip to content

Commit c0bb7f0

Browse files
ShahanaFarooquirustyrussell
authored andcommitted
lightningd: updating python v3.7 to v3.8
1 parent 2e72387 commit c0bb7f0

File tree

12 files changed

+26
-26
lines changed

12 files changed

+26
-26
lines changed

.github/workflows/ci.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
git fetch origin ${{ github.base_ref }}
4040
git rebase origin/${{ github.base_ref }}
4141
42-
- name: Set up Python 3.7
42+
- name: Set up Python 3.8
4343
uses: actions/setup-python@v4
4444
with:
45-
python-version: 3.7
45+
python-version: 3.8
4646

4747
- name: Install dependencies
4848
run: |
@@ -95,10 +95,10 @@ jobs:
9595
- name: Checkout
9696
uses: actions/checkout@v3
9797

98-
- name: Set up Python 3.7
98+
- name: Set up Python 3.8
9999
uses: actions/setup-python@v4
100100
with:
101-
python-version: 3.7
101+
python-version: 3.8
102102

103103
- name: Install dependencies
104104
run: |
@@ -153,10 +153,10 @@ jobs:
153153
- name: Checkout
154154
uses: actions/checkout@v3
155155

156-
- name: Set up Python 3.7
156+
- name: Set up Python 3.8
157157
uses: actions/setup-python@v4
158158
with:
159-
python-version: 3.7
159+
python-version: 3.8
160160

161161
- name: Install dependencies
162162
run: |
@@ -188,10 +188,10 @@ jobs:
188188
- name: Checkout
189189
uses: actions/checkout@v3
190190

191-
- name: Set up Python 3.7
191+
- name: Set up Python 3.8
192192
uses: actions/setup-python@v4
193193
with:
194-
python-version: 3.7
194+
python-version: 3.8
195195

196196
- name: Install dependencies
197197
run: |
@@ -267,10 +267,10 @@ jobs:
267267
- name: Checkout
268268
uses: actions/checkout@v3
269269

270-
- name: Set up Python 3.7
270+
- name: Set up Python 3.8
271271
uses: actions/setup-python@v4
272272
with:
273-
python-version: 3.7
273+
python-version: 3.8
274274

275275
- name: Install dependencies
276276
run: |
@@ -342,10 +342,10 @@ jobs:
342342
- name: Checkout
343343
uses: actions/checkout@v3
344344

345-
- name: Set up Python 3.7
345+
- name: Set up Python 3.8
346346
uses: actions/setup-python@v4
347347
with:
348-
python-version: 3.7
348+
python-version: 3.8
349349

350350
- name: Install dependencies
351351
run: |
@@ -412,10 +412,10 @@ jobs:
412412
- name: Checkout
413413
uses: actions/checkout@v3
414414

415-
- name: Set up Python 3.7
415+
- name: Set up Python 3.8
416416
uses: actions/setup-python@v4
417417
with:
418-
python-version: 3.7
418+
python-version: 3.8
419419

420420
- name: Install dependencies
421421
run: |

.github/workflows/pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
# Need to fetch entire history in order to locate the version tag
4343
fetch-depth: 0
4444

45-
- name: Set up Python 3.7
45+
- name: Set up Python 3.8
4646
uses: actions/setup-python@v1
4747
with:
48-
python-version: 3.7
48+
python-version: 3.8
4949

5050
- name: Install pypa/build and poetry
5151
run: >-

contrib/pyln-client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ packages = [
1111
]
1212

1313
[tool.poetry.dependencies]
14-
python = "^3.7"
14+
python = "^3.8"
1515
pyln-proto = ">=23"
1616
pyln-bolt7 = ">=1.0"
1717

contrib/pyln-grpc-proto/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ packages = [
1212
]
1313

1414
[tool.poetry.dependencies]
15-
python = "^3.7"
15+
python = "^3.8"
1616
grpcio = "*"
1717
protobuf3 = "*"
1818

contrib/pyln-proto/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ packages = [
1111
]
1212

1313
[tool.poetry.dependencies]
14-
python = "^3.7"
14+
python = "^3.8"
1515
base58 = "^2.1.1"
1616
bitstring = "^3"
1717
coincurve = "^18"

contrib/pyln-spec/bolt1/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ packages = [
1010
]
1111

1212
[tool.poetry.dependencies]
13-
python = "^3.7"
13+
python = "^3.8"
1414

1515
[tool.poetry.dev-dependencies]
1616
pyln-proto = "^0.10.2"

contrib/pyln-spec/bolt2/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ packages = [
1010
]
1111

1212
[tool.poetry.dependencies]
13-
python = "^3.7"
13+
python = "^3.8"
1414

1515
[tool.poetry.dev-dependencies]
1616
pyln-proto = "^0.10.2"

contrib/pyln-spec/bolt4/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ packages = [
1010
]
1111

1212
[tool.poetry.dependencies]
13-
python = "^3.7"
13+
python = "^3.8"
1414

1515
[tool.poetry.dev-dependencies]
1616
pyln-proto = "^0.10.2"

contrib/pyln-spec/bolt7/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ packages = [
1010
]
1111

1212
[tool.poetry.dependencies]
13-
python = "^3.7"
13+
python = "^3.8"
1414

1515
[tool.poetry.dev-dependencies]
1616
pyln-proto = "^0.10.2"

contrib/pyln-testing/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ packages = [
1111
]
1212

1313
[tool.poetry.dependencies]
14-
python = "^3.7"
14+
python = "^3.8"
1515
pytest = "^7"
1616
ephemeral-port-reserve = "^1.1.4"
1717
psycopg2-binary = "^2.9"

0 commit comments

Comments
 (0)