| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
Diff: https://github.com/scipy/scipy/compare/v1.16.2...v1.16.3
Changelog: https://github.com/scipy/scipy/releases/tag/v1.16.3
|
|
Diff: https://github.com/scipy/scipy/compare/v1.16.1...v1.16.2
Changelog: https://github.com/scipy/scipy/releases/tag/v1.16.2
|
|
Diff: https://github.com/scipy/scipy/compare/refs/tags/v1.16.0...refs/tags/v1.16.1
Changelog: https://github.com/scipy/scipy/releases/tag/v1.16.1
|
|
|
|
|
|
Fixes https://github.com/NixOS/nixpkgs/issues/425732
|
|
Per https://github.com/scipy/scipy/pull/22893
|
|
|
|
Diff: https://github.com/scipy/scipy/compare/refs/tags/v1.15.3...refs/tags/v1.16.0
Changelog: https://github.com/scipy/scipy/releases/tag/v1.16.0
|
|
Diff: https://github.com/scipy/scipy/compare/refs/tags/v1.15.2...refs/tags/v1.15.3
Changelog: https://github.com/scipy/scipy/releases/tag/v1.15.3
|
|
|
|
|
|
Actually kills a bunch of tests, but I'm not sure whether more granular
targeting is possible.
|
|
Changelog: https://github.com/scipy/scipy/releases/tag/v1.15.2
|
|
Upstream has acknowledged this test failures and is investigating a fix
for the 1.15.2 release.
|
|
|
|
Diff: https://github.com/scipy/scipy/compare/refs/tags/v1.15.0...v1.15.1
Changelog: https://github.com/scipy/scipy/releases/tag/v1.15.1
|
|
Diff: https://github.com/scipy/scipy/compare/refs/tags/v1.14.1...v1.15.0
Changelog: https://github.com/scipy/scipy/releases/tag/v1.15.0
|
|
|
|
|
|
Diff: https://github.com/scipy/scipy/compare/refs/tags/v1.14.0...v1.14.1
Changelog: https://github.com/scipy/scipy/releases/tag/v1.14.1
|
|
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
|
|
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
|
|
|
|
|
|
|
|
|
|
|
|
Upstream states that "distro packages can ignore upper bounds added only
to prevent future breakage."
|
|
|
|
|
|
|
|
|
|
Diff: https://github.com/scipy/scipy/compare/v1.13.0...v1.13.1
Changelog: https://github.com/scipy/scipy/releases/tag/v1.13.1
|
|
|
|
|
|
In the past I was very active with Python packaging.
For several years now I was hardly around as maintainer,
so it does not make sense I am listed as a maintainer for
these makes. Looking back, I should have removed myself
as maintainer already much longer ago. Anyway, better late
than never.
It's been a fun ride, and I do intend to occasionally contribute
to Nixpkgs, but not in the same way it once was.
|
|
|
|
|
|
Changelog: https://docs.scipy.org/doc/scipy/release/1.13.0-notes.html
In particular, see upstream commit for cython_3 transition:
https://github.com/scipy/scipy/commit/09401057668f2fae6916373b9751ea131f86916d
|
|
[python-updates] 2024-03-24 - selective updates
|
|
and migrate existing overrides.
|
|
|
|
|
|
With pytest 8 the testsuite fails to raise expected exceptions.
|
|
|
|
|