diff options
author | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2023-05-31 10:22:36 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-06-06 23:07:58 -0700 |
commit | b93e7642259c7f521d26d419b4c846852c000cfd (patch) | |
tree | e55bac6e787f7c7651bebc8c8ae55bc1ed5f13a5 /meta-python | |
parent | 0be87961e8c576ce397d240429342129a0483095 (diff) | |
download | meta-openembedded-b93e7642259c7f521d26d419b4c846852c000cfd.tar.gz |
python3-sqlalchemy: don't use PYTHON_PN and improve coding style
We no longer support python2. Drop PYTHON_PN and use python3 explicitly.
While at it: make indentation consistent.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.15.bb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.15.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.15.bb index 3af41bed2..b30437830 100644 --- a/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.15.bb +++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.15.bb | |||
@@ -10,14 +10,14 @@ PYPI_PACKAGE = "SQLAlchemy" | |||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-json \ | 13 | python3-compression \ |
14 | ${PYTHON_PN}-pickle \ | 14 | python3-json \ |
15 | ${PYTHON_PN}-logging \ | 15 | python3-logging \ |
16 | ${PYTHON_PN}-netclient \ | 16 | python3-netclient \ |
17 | ${PYTHON_PN}-numbers \ | 17 | python3-numbers \ |
18 | ${PYTHON_PN}-threading \ | 18 | python3-pickle \ |
19 | ${PYTHON_PN}-compression \ | 19 | python3-profile \ |
20 | ${PYTHON_PN}-profile \ | 20 | python3-threading \ |
21 | " | 21 | " |
22 | 22 | ||
23 | BBCLASSEXTEND = "native nativesdk" | 23 | BBCLASSEXTEND = "native nativesdk" |