-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mxnet: 1.1.0 -> 1.2.0 #42807
mxnet: 1.1.0 -> 1.2.0 #42807
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please split the first commit into 2 separate ones.
pkgs/top-level/python-packages.nix
Outdated
@@ -10119,11 +10119,11 @@ in { | |||
|
|||
graphviz = buildPythonPackage rec { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This package needs to be moved out of python-packages.nix
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(deleted question about the location. going to add under development/python-modules)
pkgs/top-level/python-packages.nix
Outdated
@@ -10119,11 +10119,11 @@ in { | |||
|
|||
graphviz = buildPythonPackage rec { | |||
name = "graphviz-${version}"; | |||
version = "0.5.2"; | |||
version = "0.8.1"; | |||
|
|||
src = pkgs.fetchurl { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fetchPypi
pkgs/top-level/python-packages.nix
Outdated
@@ -10119,11 +10119,11 @@ in { | |||
|
|||
graphviz = buildPythonPackage rec { | |||
name = "graphviz-${version}"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please specify pname
instead.
0aed32e
to
88da3ea
Compare
pkgs/top-level/python-packages.nix
Outdated
@@ -2800,6 +2800,8 @@ in { | |||
|
|||
mpyq = callPackage ../development/python-modules/mpyq { }; | |||
|
|||
onnx = callPackage ../development/python-modules/onnx { }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The attributes should be ordered alphabetically.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FIxed
pkgs/top-level/python-packages.nix
Outdated
@@ -14585,6 +14587,17 @@ in { | |||
|
|||
typing = callPackage ../development/python-modules/typing { }; | |||
|
|||
typing-extensions = buildPythonPackage rec { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is already packaged as typing-extensions
I believe.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mean there is a conflict with some newer version of nixpkgs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This package simply already exists. However, that's on the master branch only. Anyway, you should make your pull request against master as explained in https://nixos.org/nixpkgs/manual/#chap-submitting-changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Manual says "You can make branch from a commit of your local nixos-version. That will help you to avoid additional local compilations". I use separate nixpkgs tree for this PR and branched from nixos-18.03 of nixpkgs-channels. Is it wrong?
Should I cherry-pick typing-extensions
commit from master to this PR in order for git-merge to handle it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I cite:
Rebase you branch against current master.
Someone should fix that typo though :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, found this place. Given the cite I made earlier, I should say the manual is somewhat misleading here.
|
||
propagatedBuildInputs = [ protobuf ]; | ||
|
||
buildInputs = [ cmake numpy mypy typing-extensions ] ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is mypy
needed? numpy
and typing-extensions
probably belong into propagatedBuildInputs
and cmake
into nativeBuildInputs
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct, mypy is probably a compile-time dep. Not sure about typing-extensions, but let it be propagated. Unfortunately, something is missing to produce types, but it is not critical. I put a fixme about that in the updated version of expression.
Edit: the warning text is Failed to generate mypy stubs: No module named 'google.protobuf.compiler'
}; | ||
|
||
# FIXME: Workaround 'ERROR: file not found: onnx/examples'. Maybe one shold | ||
# try `fetchgit` instead of `fetchPypi`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I react to this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, just wanted to let you know.
43716bd
to
57df1fe
Compare
# NOTE: We weaken requests requirenments to avoid backporting to | ||
# requests-2.18. Newer version should not cause problems, according the | ||
# changelog. See https://github.com/requests/requests/blob/master/HISTORY.rst | ||
postPatch = '' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should probably use
sed -i 's/requests<2.19.0,>=2.18.4/requests<=2.20.0,>=2.18.4/g' setup.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<2.20.0. Done
@GrahamcOfBorg build python2.pkgs.mxnet python3.pkgs.mxnet |
No attempt on x86_64-darwin (full log) The following builds were skipped because they don't evaluate on x86_64-darwin: python2.pkgs.mxnet, python3.pkgs.mxnet Partial log (click to expand)
|
Failure on aarch64-linux (full log) Attempted: python2.pkgs.mxnet, python3.pkgs.mxnet Partial log (click to expand)
|
Timed out, unknown build status on x86_64-linux (full log) Attempted: python2.pkgs.mxnet, python3.pkgs.mxnet Partial log (click to expand)
|
@GrahamcOfBorg build python2.pkgs.mxnet python3.pkgs.mxnet |
No attempt on x86_64-darwin (full log) The following builds were skipped because they don't evaluate on x86_64-darwin: python2.pkgs.mxnet, python3.pkgs.mxnet Partial log (click to expand)
|
Failure on aarch64-linux (full log) Attempted: python2.pkgs.mxnet, python3.pkgs.mxnet Partial log (click to expand)
|
Failure on x86_64-linux (full log) Attempted: python2.pkgs.mxnet, python3.pkgs.mxnet Partial log (click to expand)
|
Maybe there's a way to tell mxnet where to find liblapack? |
It is included in libopenblas. You will need to tell mxnet to link libopenblas instead of libblas and liblapack. |
That's what I meant :) |
OK, I just go and fix it now :) |
@GrahamcOfBorg build python2.pkgs.mxnet python3.pkgs.mxnet |
Failure on aarch64-linux (full log) Attempted: python2.pkgs.mxnet, python3.pkgs.mxnet Partial log (click to expand)
|
|
Failure on aarch64-linux (full log) Attempted: mxnet Partial log (click to expand)
|
Timed out, unknown build status on x86_64-linux (full log) Attempted: mxnet Partial log (click to expand)
|
Timed out, unknown build status on x86_64-linux (full log) Attempted: python2.pkgs.mxnet, python3.pkgs.mxnet Partial log (click to expand)
|
@GrahamcOfBorg build python2.pkgs.mxnet python3.pkgs.mxnet |
Failure on x86_64-linux (full log) Attempted: python2.pkgs.mxnet, python3.pkgs.mxnet Partial log (click to expand)
|
Failure on aarch64-linux (full log) Attempted: python2.pkgs.mxnet, python3.pkgs.mxnet Partial log (click to expand)
|
It was too hard. Obsolete now :( |
Motivation for this change
The following patches update mxnet to version 1.2.0 and move it from math to machine-learning folder
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)