| Age | Commit message (Collapse) | Author |
|
Changelog: https://github.com/ipython/ipython/blob/8.29.0/docs/source/whatsnew/version8.rst
|
|
|
|
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"
```
|
|
Changelog: https://github.com/ipython/ipython/blob/8.27.0/docs/source/whatsnew/version8.rst
|
|
|
|
Changelog: https://github.com/ipython/ipython/blob/8.26.0/docs/source/whatsnew/version8.rst
|
|
https://github.com/ipython/ipython/blob/8.25.0/docs/source/whatsnew/version8.rst
|
|
|
|
Diff: https://github.com/ipython/ipython/compare/8.23.0...8.24.0
Changelog:
https://github.com/ipython/ipython/blob/8.24.0/docs/source/whatsnew/version8.rst
|
|
|
|
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://github.com/ipython/ipython/blob/8.23.0/docs/source/whatsnew/version8.rst
|
|
and migrate existing overrides.
|
|
The ipython test suite regressed with pytest 8.0.2, so we're giving it
so more time to adapt.
|
|
https://github.com/ipython/ipython/blob/8.22.2/docs/source/whatsnew/version8.rst
|
|
Diff: https://github.com/ipython/ipython/compare/8.20.0...8.22.1
Changelog: https://github.com/ipython/ipython/blob/8.22.1/docs/source/whatsnew/version8.rst
|
|
Changelog: https://github.com/ipython/ipython/blob/8.20.0/docs/source/whatsnew/version8.rst
|
|
https://github.com/ipython/ipython/blob/8.18.1/docs/source/whatsnew/version8.rst
|
|
|
|
Release: https://github.com/ipython/ipython/releases/tag/8.11.0
|
|
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
|
|
|
|
https://github.com/ipython/ipython/blob/8.4.0/docs/source/whatsnew/version8.rst
|
|
Black should be updatable without a mass rebuild
|
|
|
|
|
|
master)"
This reverts commit 6e1e1ddf070a703c51f77ffa7aa176c339dc055a.
cc #162047
|
|
|
|
|
|
|
|
The infinite recursion with ipykernel was been resolved in 9e3b98531.
|
|
|
|
|
|
|
|
since python36 is no longer part of nixpkgs.
|
|
|
|
Since Python 2 is not supported anymore we only keep those overrides
which are used by leaf packages.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IPython versions 7.17 and higher don't support Python 3.6 anymore, so
this commit adds back the old expression for 7.16.1 from before
ba1038a98bc2e3aa399c5ef3c4b03d42c94e1bea for use in python36Packages
only.
nix-repl> :b python36.withPackages (ps: [ ps.ipython ])
builder for '/nix/store/q8v4f89xwv35a3idb9z345z6n3nzfycb-python3.6-ipython-7.17.0.drv' failed with exit code 1; last 10 log lines:
Python 3.5 was supported with IPython 7.0 to 7.9.
Python 3.6 was supported with IPython up to 7.16.
See IPython `README.rst` file for more information:
https://github.com/ipython/ipython/blob/master/README.rst
Python sys.version_info(major=3, minor=6, micro=12, releaselevel='final', serial=0) detected.
cannot build derivation '/nix/store/mhpdarp18z6skzswrl7sbgzv8hr4gwih-python3-3.6.12-env.drv': 1 dependencies couldn't be built
[0 built (1 failed)]
error: build of '/nix/store/mhpdarp18z6skzswrl7sbgzv8hr4gwih-python3-3.6.12-env.drv' failed
|