-
-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: mattip/numpy
base: main
head repository: numpy/numpy
compare: main
- 20 commits
- 90 files changed
- 6 contributors
Commits on Jun 8, 2025
-
TST: migrating from pytz to zoneinfo + tzdata (where needed)
For migration from pytz to zoneinfo function get_tzoffset_from_pytzinfo from numpy/_core/src/multiarray/datetime.c is modified to use astimezone instead of fromutc. As the object ZoneInfo is not directly compatible to be used with datetime object. Hence, something like this would result in an exception. from datetime import datetime from zoneinfo import ZoneInfo a = datetime(2025, 6, 7, 10, 0, 0) zoneInfo = ZoneInfo("US/Central") b = zoneInfo.fromutc(a) ValueError: fromutc: dt.tzinfo is not self The function astimezone can be used with both pytz.timezone object and zoneinfo.ZoneInfo object But, if we want to use the datetime object consistently we cannot let it be a naive type i.e. without a timezone. As the default behaviour of astimezone would take the system timezone if the datetime object is not timezone aware. Hence, I had to also change the call to create datetime object to take UTC timezone. See numpy#29064
Configuration menu - View commit details
-
Copy full SHA for 21c2e70 - Browse repository at this point
Copy the full SHA 21c2e70View commit details
Commits on Jun 10, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 81b2a67 - Browse repository at this point
Copy the full SHA 81b2a67View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f1a6f8 - Browse repository at this point
Copy the full SHA 0f1a6f8View commit details
Commits on Jun 11, 2025
-
Merge pull request numpy#29148 from V-R-S/refactor-zoneinfo
TST: migrating from pytz to zoneinfo + tzdata (where needed)
Configuration menu - View commit details
-
Copy full SHA for 44d3cf1 - Browse repository at this point
Copy the full SHA 44d3cf1View commit details -
TYP: Accept dispatcher function with optional returns in ``_core.over…
…rides`` (numpy#29171) Co-authored-by: Sebastian Berg <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 29c85f3 - Browse repository at this point
Copy the full SHA 29c85f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for a17726a - Browse repository at this point
Copy the full SHA a17726aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9cbddda - Browse repository at this point
Copy the full SHA 9cbdddaView commit details -
TYP: Fix invalid inline annotations in
lib._function_base_impl
(n……umpy#29175) * TYP: Fix invalid inline annotations in ``lib._function_base_impl`` * TYP: ``ruff check --fix`` * TYP: prevent inline annotation from causing a circular import error
Configuration menu - View commit details
-
Copy full SHA for 42b875f - Browse repository at this point
Copy the full SHA 42b875fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1512865 - Browse repository at this point
Copy the full SHA 1512865View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7d8b1d5 - Browse repository at this point
Copy the full SHA 7d8b1d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bb70e1 - Browse repository at this point
Copy the full SHA 7bb70e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for ceb858f - Browse repository at this point
Copy the full SHA ceb858fView commit details -
Configuration menu - View commit details
-
Copy full SHA for ea91f18 - Browse repository at this point
Copy the full SHA ea91f18View commit details -
TYP: Fix missing
_core.numeric
(re-)exports (numpy#29166)* TYP: Sync `_core/numerictypes.pyi` with NumType's `numpy-stubs` * TYP: Fix missing ``_core.numeric`` (re-)exports * TYP: appease ``ruff``
Configuration menu - View commit details
-
Copy full SHA for 18cbd6d - Browse repository at this point
Copy the full SHA 18cbd6dView commit details -
MAINT: Bump pypa/cibuildwheel from 3.0.0b4 to 3.0.0 (numpy#29180)
Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 3.0.0b4 to 3.0.0. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@cf078b0...5f22145) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8ce860f - Browse repository at this point
Copy the full SHA 8ce860fView commit details -
CI: Bump
array-api-tests
tov2025.05.23
(numpy#29149)* CI: Bump `array-api-tests` to `v2025.05.23` * TST: xfail new array-api test failures * TST: increase ``--max-examples`` from 100 to 500 for ``array-api-tests`` * CI: apply review suggestions Co-authored-by: Evgeni Burovski <[email protected]> --------- Co-authored-by: Evgeni Burovski <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a3ec9af - Browse repository at this point
Copy the full SHA a3ec9afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d1cdb4 - Browse repository at this point
Copy the full SHA 3d1cdb4View commit details -
STY: ruff/isort config tweaks (numpy#29183)
* DEV: import-related ruff config tweaks * STY: run ``ruff check --fix`` to fix the new ``I001`` errors
Configuration menu - View commit details
-
Copy full SHA for 2c19076 - Browse repository at this point
Copy the full SHA 2c19076View commit details
Commits on Jun 12, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 1ea01c5 - Browse repository at this point
Copy the full SHA 1ea01c5View commit details -
BUG: fix matmul with transposed out arg (numpy#29179)
* BUG: fix matmul with transposed out arg * DOC: add release note * fixes from review
Configuration menu - View commit details
-
Copy full SHA for 303095e - Browse repository at this point
Copy the full SHA 303095eView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff main...main