diff options
| author | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2023-05-31 10:23:02 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-06-06 23:07:58 -0700 |
| commit | 4465806d9a16715249272380a1959cdb0a6043bb (patch) | |
| tree | 0369ef4eec728806362ca233e9fd70861325baf5 /meta-python | |
| parent | ff3a9922f999eb77664500e3457f5efe78fb8abe (diff) | |
| download | meta-openembedded-4465806d9a16715249272380a1959cdb0a6043bb.tar.gz | |
python3-pydantic: don't use PYTHON_PN and improve coding style
We no longer support python2. Drop PYTHON_PN and use python3 explicitly.
While at it: order dependencies alphabetically.
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-pydantic_1.10.7.bb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pydantic_1.10.7.bb b/meta-python/recipes-devtools/python/python3-pydantic_1.10.7.bb index 70f6834f5f..7392b51030 100644 --- a/meta-python/recipes-devtools/python/python3-pydantic_1.10.7.bb +++ b/meta-python/recipes-devtools/python/python3-pydantic_1.10.7.bb | |||
| @@ -8,13 +8,13 @@ inherit pypi setuptools3 | |||
| 8 | SRC_URI[sha256sum] = "cfc83c0678b6ba51b0532bea66860617c4cd4251ecf76e9846fa5a9f3454e97e" | 8 | SRC_URI[sha256sum] = "cfc83c0678b6ba51b0532bea66860617c4cd4251ecf76e9846fa5a9f3454e97e" |
| 9 | 9 | ||
| 10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
| 11 | ${PYTHON_PN}-typing-extensions \ | 11 | python3-core \ |
| 12 | ${PYTHON_PN}-core \ | 12 | python3-datetime \ |
| 13 | ${PYTHON_PN}-numbers \ | 13 | python3-image \ |
| 14 | ${PYTHON_PN}-json \ | 14 | python3-io \ |
| 15 | ${PYTHON_PN}-datetime \ | 15 | python3-json \ |
| 16 | ${PYTHON_PN}-io \ | 16 | python3-logging \ |
| 17 | ${PYTHON_PN}-netclient \ | 17 | python3-netclient \ |
| 18 | ${PYTHON_PN}-image \ | 18 | python3-numbers \ |
| 19 | ${PYTHON_PN}-logging \ | 19 | python3-typing-extensions \ |
| 20 | " | 20 | " |
