Bump the dependencies group with 3 updates
Created by: dependabot[bot]
Bumps the dependencies group with 3 updates: h5py, numpy and psutil.
Updates h5py
from 3.9.0 to 3.10.0
Commits
-
89374b7
Merge pull request #2321 from takluyver/whatsnew-3.10 -
9d6c2a0
Add ROS3 session token to release notes -
4b3ef6b
Tidy up release notes -
1f1c3bc
Updated CHANGELOG for 3.10.0 -
6891a6d
bumped version to 3.10.0 -
a4f80bd
Merge pull request #2301 from ajelenak/ros3-token -
edeae4b
Merge branch 'master' of https://github.com/h5py/h5py into ros3-token -
89e1e2e
Merge pull request #2320 from takluyver/hdf5-v1.10-api -
bc68588
Merge pull request #2319 from takluyver/py-3.12 -
3025b04
Add Python 3.12 to Tox config - Additional commits viewable in compare view
Updates numpy
from 1.22.0 to 1.22.4
Release notes
Sourced from numpy's releases.
v1.22.4
NumPy 1.22.4 Release Notes
NumPy 1.22.4 is a maintenance release that fixes bugs discovered after the 1.22.3 release. In addition, the wheels for this release are built using the recently released Cython 0.29.30, which should fix the reported problems with debugging.
The Python versions supported for this release are 3.8-3.10. Note that the Mac wheels are now based on OS X 10.15 rather than 10.6 that was used in previous NumPy release cycles.
Contributors
A total of 12 people contributed to this release. People with a "+" by their names contributed a patch for the first time.
- Alexander Shadchin
- Bas van Beek
- Charles Harris
- Hood Chatham
- Jarrod Millman
- John-Mark Gurney +
- Junyan Ou +
- Mariusz Felisiak +
- Ross Barnowski
- Sebastian Berg
- Serge Guelton
- Stefan van der Walt
Pull requests merged
A total of 22 pull requests were merged for this release.
- #21191: TYP, BUG: Fix
np.lib.stride_tricks
re-exported under the...- #21192: TST: Bump mypy from 0.931 to 0.940
- #21243: MAINT: Explicitly re-export the types in
numpy._typing
- #21245: MAINT: Specify sphinx, numpydoc versions for CI doc builds
- #21275: BUG: Fix typos
- #21277: ENH, BLD: Fix math feature detection for wasm
- #21350: MAINT: Fix failing simd and cygwin tests.
- #21438: MAINT: Fix failing Python 3.8 32-bit Windows test.
- #21444: BUG: add linux guard per #21386
- #21445: BUG: Allow legacy dtypes to cast to datetime again
- #21446: BUG: Make mmap handling safer in frombuffer
- #21447: BUG: Stop using PyBytesObject.ob_shash deprecated in Python 3.11.
- #21448: ENH: Introduce numpy.core.setup_common.NPY_CXX_FLAGS
- #21472: BUG: Ensure compile errors are raised correclty
- #21473: BUG: Fix segmentation fault
... (truncated)
Commits
-
08772f9
Merge pull request #21549 from charris/prepare-for-1.22.4-1 -
f15e388
REL: Prepare for the NumPy 1.22.4 release, second try. -
60f2f4d
Merge pull request #21547 from charris/fix-pypy-wheel-failures -
dcc92ae
MAINT: Skip tests that fail on PyPy. -
99766d3
Merge pull request #21541 from charris/prepare-for-1.22.4 -
5427694
REL: Prepare for NumPy 1.22.4 release. -
c0d84f1
Merge pull request #21536 from charris/backport-21534 -
dca51c7
BUG: Fix GCC error during build configuration -
3c13dad
Merge pull request #21525 from charris/backport-21514 -
14be617
MAINT: Update Cython version to 0.29.29. - Additional commits viewable in compare view
Updates psutil
from 5.9.5 to 5.9.6
Changelog
Sourced from psutil's changelog.
5.9.6
2023-10-15
Enhancements
- 1703_:
cpu_percent()
_ andcpu_times_percent()
_ are now thread safe, meaning they can be called from different threads and still return meaningful and independent results. Before, if (say) 10 threads calledcpu_percent(interval=None)
at the same time, only 1 thread out of 10 would get the right result.- 2266_: if
Process
_ class is passed a very high PID, raiseNoSuchProcess
_ instead of OverflowError. (patch by Xuehai Pan)- 2246_: drop python 3.4 & 3.5 support. (patch by Matthieu Darbois)
- 2290_: PID reuse is now pre-emptively checked for
Process.ppid()
_ andProcess.parents()
_.- 2312_: use
ruff
Python linter instead offlake8 + isort
. It's an order of magnitude faster + it adds a ton of new code quality checks.Bug fixes
- 2195_, [Linux]: no longer print exception at import time in case /proc/stat can't be read due to permission error. Redirect it to
PSUTIL_DEBUG
instead.- 2241_, [NetBSD]: can't compile On NetBSD 10.99.3/amd64. (patch by Thomas Klausner)
- 2245_, [Windows]: fix var unbound error on possibly in
swap_memory()
_ (patch by student_2333)- 2268_:
bytes2human()
utility function was unable to properly represent negative values.- 2252_, [Windows]:
disk_usage()
_ fails on Python 3.12+. (patch by Matthieu Darbois)- 2284_, [Linux]:
Process.memory_full_info()
_ may incorrectly raiseZombieProcess
_ if it's determined via/proc/pid/smaps_rollup
. Instead we now fallback on reading/proc/pid/smaps
.- 2287_, [OpenBSD], [NetBSD]:
Process.is_running()
_ erroneously returnFalse
for zombie processes, because creation time cannot be determined.- 2288_, [Linux]: correctly raise
ZombieProcess
_ onProcess.exe()
,Process.cmdline()
andProcess.memory_maps()
_ instead of returning a "null" value.- 2290_: differently from what stated in the doc, PID reuse is not pre-emptively checked for
Process.nice()
_ (set),Process.ionice()
, (set),Process.cpu_affinity()
(set),Process.rlimit()
_ (set),Process.parent()
_.- 2308_, [OpenBSD]:
Process.threads()
_ always fail with AccessDenied (also as root).
Commits
-
8eb2930
pre-release -
8815b9b
give CREDIT to@JeremyGrosser
and@getsentry
for sponsorship (thanks!) -
5a37710
Merge branch 'master' of github.com:giampaolo/psutil -
4a35f51
fix error in test_contracts.py on win -
a7e70bb
chore: update GHA workflows (#2315) -
becbe86
fix #2195 / linux: no longer print exception at import time -
84cdeb4
Add ruff Python linter, remove flake8 (#2312) -
e7ba381
Add toml-sort linting tool for pyproject.toml (#2311) -
ddf9531
new RTD config -
2cd8ef7
new RTD config - Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency -
@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions