Skip to content

Commit 7f54e06

Browse files
committed
version 3.0.1
1 parent ac1da81 commit 7f54e06

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

Changelog.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 3.0.1 (21 Oct 2020)
2+
bugfixes, return missing packages
3+
4+
### Fixes
5+
- Some sdist packages were missing from the dependency DB due to a corrupt index in the SQL DB used by the crawler.
6+
- When automatically fixing circular deps, removed deps could trigger a `No matching distribution found` error in higher level parent packages. Now `--no-dependencies` is set recursively for all parents of removed deps.
7+
- Mapping out the resulting dependency DAG to a tree for printing could exhaust the systems resources, due to complexity. Now, when printing dependencies, sub-trees are trimmed and marked via (...) if they have already been printed earlier.
8+
9+
### Improvements
10+
- optimized autoPatchelfHook for faster processing of large wheel packages (see [upstream PR](https://github.com/NixOS/nixpkgs/pull/101142))
11+
- `networkx` is now used for dealing with some graph related problems
12+
13+
114
# 3.0.0 (14 Oct 2020)
215
flakes pypi gateway, R support, new output formats, more packages for python 3.5/3.6, improved providers nixpkgs/wheel
316

Readme.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ Table of Contents
6060
You can either install mach-nix via pip or by using nix in case you already have the nix package manager installed.
6161
#### Installing via pip
6262
```shell
63-
pip install git+git://github.com/DavHau/mach-nix@3.0.0
63+
pip install git+git://github.com/DavHau/mach-nix@3.0.1
6464
```
6565
#### Installing via nix
6666
```shell
67-
nix-env -if https://github.com/DavHau/mach-nix/tarball/3.0.0 -A mach-nix
67+
nix-env -if https://github.com/DavHau/mach-nix/tarball/3.0.1 -A mach-nix
6868
```
6969

7070
---
@@ -96,7 +96,7 @@ You can call mach-nix directly from a nix expression
9696
let
9797
mach-nix = import (builtins.fetchGit {
9898
url = "https://github.com/DavHau/mach-nix/";
99-
ref = "refs/tags/3.0.0";
99+
ref = "refs/tags/3.0.1";
100100
}) {};
101101
in
102102
mach-nix.mkPython {

examples.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ every mach-nix expression should begin like this:
4040
let
4141
mach-nix = import (builtins.fetchGit {
4242
url = "https://github.com/DavHau/mach-nix/";
43-
ref = "refs/tags/3.0.0";
43+
ref = "refs/tags/3.0.1";
4444
}) {
4545
# optionally bring your own nixpkgs
4646
# pkgs = import <nixpkgs> {};

mach_nix/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.0.1

0 commit comments

Comments
 (0)