All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/3] python3-send2trash: Upgrade 1.5.0 -> 1.7.1
@ 2021-06-23  9:06 Leon Anavi
  2021-06-23  9:06 ` [meta-python][PATCH 2/3] python3-pandas: Upgrade 1.2.4 -> 1.2.5 Leon Anavi
  2021-06-23  9:06 ` [meta-python][PATCH 3/3] python3-mypy: Upgrade 0.902 -> 0.910 Leon Anavi
  0 siblings, 2 replies; 3+ messages in thread
From: Leon Anavi @ 2021-06-23  9:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.7.1:

- Changed conditional for when to try to use pyobjc version
- Add console_script entry point
- Increased python CI versions
- Fix minor issue in setup.py
- Fix issue with windows tests importing modules on non-windows
- Unit test cleanups, rewrites, and flake8 cleanups
- Windows: Fix legacy windows platform for multi-byte unicode and
  add tests
- macOS: Add alternative pyobjc version to potentially improve
  compatibility
- Add main method which allows calling via python -m send2trash
  somefile
- Windows: Add support for using IFileOperation when pywin32 is
  present on Vista and newer
- Add support for passing multiple files at once in a list
- Windows: Batch multi-file calls to improve performance
- Windows: Fix issue with SHFileOperation failing silently when
  path is not found

License-Update: License remains BSD-3-Clause License

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../send2trash/python3-send2trash_1.5.0.bb               | 9 ---------
 .../send2trash/python3-send2trash_1.7.1.bb               | 9 +++++++++
 2 files changed, 9 insertions(+), 9 deletions(-)
 delete mode 100644 meta-python/recipes-extended/send2trash/python3-send2trash_1.5.0.bb
 create mode 100644 meta-python/recipes-extended/send2trash/python3-send2trash_1.7.1.bb

diff --git a/meta-python/recipes-extended/send2trash/python3-send2trash_1.5.0.bb b/meta-python/recipes-extended/send2trash/python3-send2trash_1.5.0.bb
deleted file mode 100644
index d906c0b9e3..0000000000
--- a/meta-python/recipes-extended/send2trash/python3-send2trash_1.5.0.bb
+++ /dev/null
@@ -1,9 +0,0 @@
-SUMMARY = "Send file to trash natively under Mac OS X, Windows and Linux"
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=05faa35ba1ca10b723f19d286c9d5237"
-
-inherit pypi setuptools3
-
-SRC_URI[sha256sum] = "60001cc07d707fe247c94f74ca6ac0d3255aabcb930529690897ca2a39db28b2"
-
-PYPI_PACKAGE = "Send2Trash"
diff --git a/meta-python/recipes-extended/send2trash/python3-send2trash_1.7.1.bb b/meta-python/recipes-extended/send2trash/python3-send2trash_1.7.1.bb
new file mode 100644
index 0000000000..d3554c8031
--- /dev/null
+++ b/meta-python/recipes-extended/send2trash/python3-send2trash_1.7.1.bb
@@ -0,0 +1,9 @@
+SUMMARY = "Send file to trash natively under Mac OS X, Windows and Linux"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=a02659c2d5f4cc626e4dcf6504b865eb"
+
+inherit pypi setuptools3
+
+SRC_URI[sha256sum] = "17730aa0a33ab82ed6ca76be3bb25f0433d0014f1ccf63c979bab13a5b9db2b2"
+
+PYPI_PACKAGE = "Send2Trash"
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-python][PATCH 2/3] python3-pandas: Upgrade 1.2.4 -> 1.2.5
  2021-06-23  9:06 [meta-python][PATCH 1/3] python3-send2trash: Upgrade 1.5.0 -> 1.7.1 Leon Anavi
@ 2021-06-23  9:06 ` Leon Anavi
  2021-06-23  9:06 ` [meta-python][PATCH 3/3] python3-mypy: Upgrade 0.902 -> 0.910 Leon Anavi
  1 sibling, 0 replies; 3+ messages in thread
From: Leon Anavi @ 2021-06-23  9:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.2.5:

- Fixed regression in concat() between two DataFrame where one has
  an Index that is all-None and the other is DatetimeIndex
  incorrectly raising
- Fixed regression in DataFrame.sum() and DataFrame.prod() when
  min_count and numeric_only are both given
- Fixed regression in read_csv() when using memory_map=True with
  an non-UTF8 encoding
- Fixed regression in DataFrame.replace() and Series.replace()
  when the values to replace is a NumPy float array
- Fixed regression in ExcelFile() when a corrupt file is opened
  but not closed
- Fixed regression in DataFrame.astype() with dtype=str failing
  to convert NaN in categorical columns

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-pandas_1.2.4.bb => python3-pandas_1.2.5.bb}       | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pandas_1.2.4.bb => python3-pandas_1.2.5.bb} (85%)

diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.2.4.bb b/meta-python/recipes-devtools/python/python3-pandas_1.2.5.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-pandas_1.2.4.bb
rename to meta-python/recipes-devtools/python/python3-pandas_1.2.5.bb
index 54fa910a98..71386dc94a 100644
--- a/meta-python/recipes-devtools/python/python3-pandas_1.2.4.bb
+++ b/meta-python/recipes-devtools/python/python3-pandas_1.2.5.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "http://pandas.pydata.org/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c2a8f987b2ce77c368c6b3e1b5b10774"
 
-SRC_URI[sha256sum] = "649ecab692fade3cbfcf967ff936496b0cfba0af00a55dfaacd82bdda5cb2279"
+SRC_URI[sha256sum] = "14abb8ea73fce8aebbb1fb44bec809163f1c55241bcc1db91c2c780e97265033"
 
 inherit pypi setuptools3
 
@@ -21,4 +21,5 @@ RDEPENDS_${PN} += " \
     ${PYTHON_PN}-numpy \
     ${PYTHON_PN}-dateutil \
     ${PYTHON_PN}-pytz \
+    ${PYTHON_PN}-profile \
 "
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-python][PATCH 3/3] python3-mypy: Upgrade 0.902 -> 0.910
  2021-06-23  9:06 [meta-python][PATCH 1/3] python3-send2trash: Upgrade 1.5.0 -> 1.7.1 Leon Anavi
  2021-06-23  9:06 ` [meta-python][PATCH 2/3] python3-pandas: Upgrade 1.2.4 -> 1.2.5 Leon Anavi
@ 2021-06-23  9:06 ` Leon Anavi
  1 sibling, 0 replies; 3+ messages in thread
From: Leon Anavi @ 2021-06-23  9:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.910:

- Call get_method_hook when methods are used in decorators
- Don't ask to install a stub package if stubs are installed
- [mypyc] Support various number-related dunders
- Fix crash when inferring multiple assignment with overloaded
  function
- Replace variable annotation with type comment to fix Python 3.5
- docs: updating URL in comment

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-mypy_0.902.bb => python3-mypy_0.910.bb}  | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-mypy_0.902.bb => python3-mypy_0.910.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-mypy_0.902.bb b/meta-python/recipes-devtools/python/python3-mypy_0.910.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-mypy_0.902.bb
rename to meta-python/recipes-devtools/python/python3-mypy_0.910.bb
index 86465e2f3a..8e675e6a9b 100644
--- a/meta-python/recipes-devtools/python/python3-mypy_0.902.bb
+++ b/meta-python/recipes-devtools/python/python3-mypy_0.910.bb
@@ -3,21 +3,18 @@ HOMEPAGE = "https://github.com/python/mypy"
 LICENSE = "MIT & Python-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=17b7180fcfc43c4e70c07c71588604c4"
 
-RDEPENDS_${PN} = " \
-    ${PYTHON_PN}-mypy-extensions \
-    ${PYTHON_PN}-typed-ast \
-    ${PYTHON_PN}-typing-extensions \
-"
-
 PYPI_PACKAGE = "mypy"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "9236c21194fde5df1b4d8ebc2ef2c1f2a5dc7f18bcbea54274937cae2e20a01c"
+SRC_URI[sha256sum] = "704098302473cb31a218f1775a873b376b30b4c18229421e9e9dc8916fd16150"
 
 BBCLASSEXTEND = "native"
 
 RDEPENDS_${PN} += " \
+    ${PYTHON_PN}-mypy-extensions \
+    ${PYTHON_PN}-typed-ast \
+    ${PYTHON_PN}-typing-extensions \
     ${PYTHON_PN}-json \
     ${PYTHON_PN}-compression \
     ${PYTHON_PN}-pprint \
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-23  9:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-23  9:06 [meta-python][PATCH 1/3] python3-send2trash: Upgrade 1.5.0 -> 1.7.1 Leon Anavi
2021-06-23  9:06 ` [meta-python][PATCH 2/3] python3-pandas: Upgrade 1.2.4 -> 1.2.5 Leon Anavi
2021-06-23  9:06 ` [meta-python][PATCH 3/3] python3-mypy: Upgrade 0.902 -> 0.910 Leon Anavi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.