lightningd: updating python v3.7 to v3.8

This commit is contained in:
Shahana Farooqui 2023-07-19 16:01:11 -07:00 committed by Rusty Russell
parent 2e72387700
commit c0bb7f0721
12 changed files with 26 additions and 26 deletions

View file

@ -39,10 +39,10 @@ jobs:
git fetch origin ${{ github.base_ref }}
git rebase origin/${{ github.base_ref }}
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
@ -95,10 +95,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
@ -153,10 +153,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
@ -188,10 +188,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
@ -267,10 +267,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
@ -342,10 +342,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |
@ -412,10 +412,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: |

View file

@ -42,10 +42,10 @@ jobs:
# Need to fetch entire history in order to locate the version tag
fetch-depth: 0
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Install pypa/build and poetry
run: >-

View file

@ -11,7 +11,7 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
pyln-proto = ">=23"
pyln-bolt7 = ">=1.0"

View file

@ -12,7 +12,7 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
grpcio = "*"
protobuf3 = "*"

View file

@ -11,7 +11,7 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
base58 = "^2.1.1"
bitstring = "^3"
coincurve = "^18"

View file

@ -10,7 +10,7 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
[tool.poetry.dev-dependencies]
pyln-proto = "^0.10.2"

View file

@ -10,7 +10,7 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
[tool.poetry.dev-dependencies]
pyln-proto = "^0.10.2"

View file

@ -10,7 +10,7 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
[tool.poetry.dev-dependencies]
pyln-proto = "^0.10.2"

View file

@ -10,7 +10,7 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
[tool.poetry.dev-dependencies]
pyln-proto = "^0.10.2"

View file

@ -11,7 +11,7 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
pytest = "^7"
ephemeral-port-reserve = "^1.1.4"
psycopg2-binary = "^2.9"

View file

@ -284,7 +284,7 @@ pkg_add autoconf # (select highest version, autoconf-2.69p2 at time of writing)
Install `mako` otherwise we run into build errors:
```shell
pip3.7 install --user poetry
pip3.8 install --user poetry
poetry install
```

View file

@ -6,7 +6,7 @@ authors = ["Christian Decker <cdecker@blockstream.com>"]
[tool.poetry.dependencies]
# Build dependencies belong here
python = "^3.7"
python = "^3.8"
pyln-client = { path = "contrib/pyln-client", develop = true }
pyln-proto = { path = "contrib/pyln-proto", develop = true }
Mako = "^1.1.6"